
Comment #1 on issue 611 by arussell...@gmail.com: XMonad.Util.Run needs to not encode with recent ghc https://code.google.com/p/xmonad/issues/detail?id=611 Minimal config to reproduce the issue discussed on IRC (using xmobar). import XMonad import XMonad.Hooks.DynamicLog import XMonad.Hooks.ManageDocks import XMonad.Util.Run myLogHook h = dynamicLogWithPP $ xmobarPP { ppOutput = hPutStrLn h } main :: IO () main = do xmobar <- spawnPipe "xmobar --font='xft:DejaVu Sans Mono,Symbola' --commands='[Run StdinReader]' -t '%StdinReader%}{😄'" xmonad $ defaultConfig { modMask = mod4Mask , logHook = myLogHook xmobar , layoutHook = avoidStruts $ layoutHook defaultConfig } -- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notification preferences at: https://code.google.com/hosting/settings