Как реализовать кликабельность тегов через xdotool ?
myLogHook xmproc = dynamicLogWithPP $ compPP { ppOutput = hPutStrLn xmproc }
where
compPP = defaultPP {
ppHidden = xmobarColor "#a9acb6" ""
, ppCurrent = xmobarColor "#e2e2e2" "" . wrap "[" "]"
, ppLayout = xmobarColor "#ff0000" ""
, ppUrgent = xmobarColor "#a9acb6" "" . wrap "*" "*"
, ppHiddenNoWindows = showNamedWorkspaces
, ppOrder = \(ws:_:t:_) -> [ws, t]
, ppSep = "<fc=#a9acb6> | </fc>"
} where showNamedWorkspaces wsId = if any (`elem` wsId) ['a'..'z']
then pad wsId
else ""