mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-08-04 22:21:54 -07:00
DynamicLog: not . null. Duh.
This commit is contained in:
@@ -134,7 +134,7 @@ unwords' :: [String] -> String
|
||||
unwords' = sepBy " "
|
||||
|
||||
sepBy :: String -> [String] -> String
|
||||
sepBy sep = concat . intersperse sep . filter null
|
||||
sepBy sep = concat . intersperse sep . filter (not . null)
|
||||
|
||||
-- TODO dzenColor
|
||||
xmobarColor :: String -> String -> String -> String
|
||||
|
Reference in New Issue
Block a user