diff options
author | Azat Bahawi <azahi@teknik.io> | 2020-02-19 20:57:30 +0300 |
---|---|---|
committer | Azat Bahawi <azahi@teknik.io> | 2020-02-19 20:57:30 +0300 |
commit | 277837c7eeec53aa973ad437a1b3575b3a693092 (patch) | |
tree | 1dd47e23d9da5837417ae22be1631d878caad8b4 /xmobarrc | |
parent | Update upstream, remove junk from xmobar (diff) |
Fix xmobar overlap error
Fix xmobar's issue with not restarting itself if the process is not strictly bound to XMonad with StdinReader. Now we will only launch the bottom bar once (on initial startup).
Diffstat (limited to '')
-rw-r--r-- | xmobarrc/bot.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmobarrc/bot.hs b/xmobarrc/bot.hs index d9428e0..13b942e 100644 --- a/xmobarrc/bot.hs +++ b/xmobarrc/bot.hs @@ -23,15 +23,15 @@ Config { font = "xft:tewi:style=Regular:pixelsize=11,Biwidth:pixelsize=12" , borderColor = "#2f2b2a" , borderWidth = 1 , iconRoot = "." - , commands = [ Run StdinReader - , Run Battery [ "-t", "<fn=1><acstatus></fn> <left>%" + , commands = [ Run Battery [ "-t", "<fn=1><acstatus></fn> <left>%" , "--" , "-i", "\57914", "-O", "\57913" , "-o", "\57911" ] 10 , Run Wireless "wlp3s0" [ "-t", "<fn=1>\57775</fn> <essid> @ <quality>%" ] 10 , Run DynNetwork [ "-t", "<fn=1>\57660</fn> <rx> / <fn=1>\57659</fn> <tx> kbps" ] 10 , Run Kbd [ ("us", "English") - , ("ru", "Russian")] + , ("ru", "Русский") + ] , Run Com "/home/free/.xmonad/scripts/xmobar/fcitx.sh" [] "fcitx" 3 , Run Locks , Run MPD [ "-t", "<fn=1><statei></fn> <artist> - <title>" @@ -49,7 +49,7 @@ Config { font = "xft:tewi:style=Regular:pixelsize=11,Biwidth:pixelsize=12" , sepChar = "%" , alignSep = "}{" , template = " \ - \%battery% %wlp3s0wi% %dynnetwork% %StdinReader%\ + \%battery% %wlp3s0wi% %dynnetwork%\ \}\ \%kbd% / %fcitx%\ \{\ |