we
This commit is contained in:
parent
7f6a820af2
commit
4647245fc2
1 changed files with 2 additions and 2 deletions
|
@ -252,7 +252,7 @@ myLogHook :: Handle -> X ()
|
|||
myLogHook h = dynamicLogWithPP $ def {
|
||||
ppOutput = hPutStrLn h,
|
||||
ppExtras = [],
|
||||
ppOrder = \(ws:_) -> [ws]
|
||||
ppOrder = \[ws, l, _] -> [ws, l],
|
||||
}
|
||||
|
||||
myXmobarFormat = def {
|
||||
|
@ -263,7 +263,7 @@ myXmobarFormat = def {
|
|||
ppHiddenNoWindows = lowWhite . wrap " " "",
|
||||
ppUrgent = red . wrap (yellow "!") (yellow "!"),
|
||||
-- ppOrder = \(ws:_) -> [ws],
|
||||
ppOrder = \[ws, l, _] -> [ws, l],
|
||||
ppOrder = \[ws, l, _, wins] -> [ws, l, wins]
|
||||
ppExtras = [logTitles formatFocused formatUnfocused]
|
||||
}
|
||||
where
|
||||
|
|
Loading…
Reference in a new issue