missing comma
This commit is contained in:
parent
a5aa54a397
commit
c9e872f687
|
@ -258,11 +258,10 @@ myLogHook h = dynamicLogWithPP $ def {
|
||||||
}
|
}
|
||||||
|
|
||||||
xmobarFormat = def {
|
xmobarFormat = def {
|
||||||
ppCurrent = xmobarColor "black" "white"
|
ppCurrent = xmobarColor "black" "white",
|
||||||
ppOutput = hPutStrLn h,
|
ppOutput = hPutStrLn h,
|
||||||
ppExtras = [],
|
ppExtras = [],
|
||||||
ppOrder = \(ws:_) -> [ws]
|
ppOrder = \(ws:_) -> [ws]
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
statusBar = statusBarProp "xmobar" (pure xmobarFormat)
|
statusBar = statusBarProp "xmobar" (pure xmobarFormat)
|
||||||
|
|
Loading…
Reference in a new issue