1
0
mirror of https://github.com/xmonad/xmonad-contrib.git synced 2025-07-25 09:11:51 -07:00

X.H.DynamicLog: Fix xmobarProp example

In [1] we changed the return type to not be an IO action and hence this
example can't work, even with an otherwise correct configuration.

[1]: 168cb6a6c3 (Removed unnecessary IO)
This commit is contained in:
slotThe
2021-11-06 11:34:04 +01:00
parent 3bc06447d2
commit feee11a0ba

@@ -243,7 +243,7 @@ dynamicLogXinerama = withWindowSet $ io . putStrLn . pprWindowSetXinerama
-- | Run xmonad with a property-based xmobar status bar set to some nice
-- defaults.
--
-- > main = xmonad =<< xmobarProp myConfig
-- > main = xmonad $ xmobarProp myConfig
-- >
-- > myConfig = def { ... }
--