xmonad-config/lib/Xmobar/Plugins/Common.hs

11 lines
273 B
Haskell
Raw Normal View History

module Xmobar.Plugins.Common
(chooseColor)
where
import XMonad.Hooks.DynamicLog (xmobarColor)
chooseColor :: String -> String -> String -> Bool -> String
chooseColor text colorOn colorOff state =
xmobarColor (if state then colorOn else colorOff) "" text