xmonad - hide NSP workspace

This commit is contained in:
Felix Van der Jeugt 2015-03-08 15:50:24 +01:00
parent 0331c65345
commit 7bf50613a3
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ myStartupHook = return ()
myPP :: PP myPP :: PP
myPP = xmobarPP { ppCurrent = xmobarColor "red" "" myPP = xmobarPP { ppCurrent = xmobarColor "red" ""
, ppVisible = xmobarColor "orange" "" , ppVisible = xmobarColor "orange" ""
, ppHidden = id , ppHidden = \n -> if n == "NSP" then "" else n
, ppHiddenNoWindows = const "" , ppHiddenNoWindows = const ""
, ppUrgent = xmobarColor "green" "" , ppUrgent = xmobarColor "green" ""
, ppSep = " - " , ppSep = " - "