about summary refs log tree commit diff
path: root/dotfiles
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-06 03:06:32 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-06 03:06:32 +0200
commit8f1b2f12ba2852899ed3dc3be98a02248584d694 (patch)
tree6faa12b5b7eed4096cf8cca95e17a2965399ff77 /dotfiles
parentLuna+VM: Add xmonadctl and xmonad sxhkd config (diff)
downloadnixos-config-8f1b2f12ba2852899ed3dc3be98a02248584d694.tar.gz
nixos-config-8f1b2f12ba2852899ed3dc3be98a02248584d694.tar.bz2
nixos-config-8f1b2f12ba2852899ed3dc3be98a02248584d694.zip
Xmobar: Disable loweronstart
This fixes xmobar not being visible on 1st launch
Diffstat (limited to 'dotfiles')
-rw-r--r--dotfiles/xmobar.hs6
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" ]