[xmonad] added window title after workspaces
This commit is contained in:
parent
16d5242884
commit
1ace054834
1 changed files with 3 additions and 1 deletions
|
@ -133,6 +133,8 @@ myEventHook = ewmhDesktopsEventHook
|
||||||
|
|
||||||
myStartupHook = do
|
myStartupHook = do
|
||||||
spawnOnce "dunst &"
|
spawnOnce "dunst &"
|
||||||
|
spawnOnce "lxpolkit"
|
||||||
|
spawnOnce "thunar --daemon"
|
||||||
spawnOnce "kwalletd6"
|
spawnOnce "kwalletd6"
|
||||||
spawnOnce "pasystray"
|
spawnOnce "pasystray"
|
||||||
spawnOnce "nitrogen --restore &"
|
spawnOnce "nitrogen --restore &"
|
||||||
|
@ -159,7 +161,7 @@ myXmobarPP = def
|
||||||
, ppVisible = xmobarColor gray0 "" . const wsIconFull
|
, ppVisible = xmobarColor gray0 "" . const wsIconFull
|
||||||
, ppHidden = xmobarColor gray0 "" . const wsIconFull
|
, ppHidden = xmobarColor gray0 "" . const wsIconFull
|
||||||
, ppHiddenNoWindows = xmobarColor gray0 "" . const wsIconFull
|
, ppHiddenNoWindows = xmobarColor gray0 "" . const wsIconFull
|
||||||
, ppOrder = \(ws : _ : _ : extras) -> ws : extras
|
, ppOrder = \(ws : _ : t : extras) -> ws : " " : t : extras
|
||||||
}
|
}
|
||||||
where
|
where
|
||||||
wsIconFull = " <fn=2>\xf111</fn> "
|
wsIconFull = " <fn=2>\xf111</fn> "
|
||||||
|
|
Loading…
Reference in a new issue