diff options
-rw-r--r-- | dotfiles/xmobar.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dotfiles/xmobar.hs b/dotfiles/xmobar.hs index 1636209..81e91c1 100644 --- a/dotfiles/xmobar.hs +++ b/dotfiles/xmobar.hs @@ -3,11 +3,11 @@ Config { -- appearance font = "xft:Noto Sans Display Nerd Font:size=10" + , additionalFonts = [] , bgColor = "#222222" , fgColor = "#bbbbbb" , position = Top , border = NoBorder - , borderColor = "#222222" -- layout , sepChar = "%" -- delineator between plugin names and straight text @@ -15,12 +15,12 @@ Config { , template = "%XMonadLog% }{ %WM_NAME%" -- general behavior - , lowerOnStart = True -- send to bottom of window stack on start + , lowerOnStart = False -- send to bottom of window stack on start , hideOnStart = False -- start with window unmapped (hidden) , allDesktops = True -- show on all desktops , overrideRedirect = True -- set the Override Redirect flag (Xlib) , pickBroadest = False -- choose widest display (multi-monitor) - , persistent = True -- enable/disable hiding (True = disabled) + , persistent = False -- enable/disable hiding (True = disabled) , commands = [ Run XMonadLog, Run XPropertyLog "WM_NAME" ] |