it was the wrong one
This commit is contained in:
parent
372d12d751
commit
09f9879bb3
1 changed files with 2 additions and 2 deletions
|
@ -259,7 +259,7 @@ myLogHook :: Handle -> X ()
|
||||||
myLogHook h = dynamicLogWithPP $ def {
|
myLogHook h = dynamicLogWithPP $ def {
|
||||||
ppOutput = hPutStrLn h,
|
ppOutput = hPutStrLn h,
|
||||||
ppExtras = [],
|
ppExtras = [],
|
||||||
ppOrder = \[ws, _] -> [ws]
|
ppOrder = \[ws, l, _] -> [ws, l]
|
||||||
}
|
}
|
||||||
|
|
||||||
myXmobarFormat = def {
|
myXmobarFormat = def {
|
||||||
|
@ -270,7 +270,7 @@ myXmobarFormat = def {
|
||||||
ppHiddenNoWindows = lowWhite . wrap " " "",
|
ppHiddenNoWindows = lowWhite . wrap " " "",
|
||||||
ppUrgent = red . wrap (yellow "!") (yellow "!"),
|
ppUrgent = red . wrap (yellow "!") (yellow "!"),
|
||||||
-- ppOrder = \(ws:_) -> [ws],
|
-- ppOrder = \(ws:_) -> [ws],
|
||||||
ppOrder = \[ws, l, _, wins] -> [ws, l, wins],
|
ppOrder = \[ws, l, _ ] -> [ws, l ],
|
||||||
ppExtras = [logTitles formatFocused formatUnfocused]
|
ppExtras = [logTitles formatFocused formatUnfocused]
|
||||||
}
|
}
|
||||||
where
|
where
|
||||||
|
|
Loading…
Reference in a new issue