diff options
| author | Andrew <saintruler@gmail.com> | 2020-11-30 20:01:31 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2020-11-30 20:01:31 +0400 |
| commit | 2ffe1d22e9ab40f205f0cfa70ebb0712bb36c115 (patch) | |
| tree | 53e54f1f6bf6b5f5caffac3c23948a6d496ce3f8 /.config/xmonad/xmobarrc | |
| parent | 00d1c84188d72fb84b9bf31857a8ec1caf242593 (diff) | |
Added xmonad configuration
Diffstat (limited to '.config/xmonad/xmobarrc')
| -rw-r--r-- | .config/xmonad/xmobarrc | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/.config/xmonad/xmobarrc b/.config/xmonad/xmobarrc new file mode 100644 index 0000000..d9e8fc2 --- /dev/null +++ b/.config/xmonad/xmobarrc @@ -0,0 +1,96 @@ +Config { + + -- appearance + font = "xft:Bitstream Vera Sans Mono:size=11:bold:antialias=true" + , bgColor = "black" + , fgColor = "white" + , position = Top + , border = BottomB + , borderColor = "#646464" + + -- layout + , sepChar = "%" -- delineator between plugin names and straight text + , alignSep = "}{" -- separator between left-right alignment + , template = " %StdinReader% }{ %battery% | %kbd% | %memory% | %dynnetwork% | %date% " + + -- general behavior + , lowerOnStart = True -- 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) + + -- plugins + -- Numbers can be automatically colored according to their value. xmobar + -- decides color based on a three-tier/two-cutoff system, controlled by + -- command options: + -- --Low sets the low cutoff + -- --High sets the high cutoff + -- + -- --low sets the color below --Low cutoff + -- --normal sets the color between --Low and --High cutoffs + -- --High sets the color above --High cutoff + -- + -- The --template option controls how the plugin is displayed. Text + -- color can be set by enclosing in <fc></fc> tags. For more details + -- see http://projects.haskell.org/xmobar/#system-monitor-plugins. + , commands = + + -- Stdin Reader from xmonad + [ Run StdinReader + + -- network activity monitor (dynamic interface resolution) + , Run DynNetwork [ "--template" , "<fc=#02d310><dev></fc>" + , "--Low" , "1000" -- units: B/s + , "--High" , "5000" -- units: B/s + , "--low" , "green" + , "--normal" , "orange" + , "--high" , "red" + ] 10 + + -- cpu activity monitor + , Run MultiCpu [ "--template" , "Cpu: <total0>%|<total1>%" + , "--Low" , "50" -- units: % + , "--High" , "85" -- units: % + , "--low" , "#02d310" -- red + , "--normal" , "#ed8b02" -- orange + , "--high" , "#ed2902" -- green + ] 10 + + -- memory usage monitor + , Run Memory [ "--template" ,"Mem: <usedratio>%" + , "--Low" , "20" -- units: % + , "--High" , "90" -- units: % + , "--low" , "#02d310" -- red + , "--normal" , "#ed8b02" -- orange + , "--high" , "#ed2902" -- green + ] 10 + + -- battery monitor + , Run Battery [ "--template" , "Battery: <acstatus>" + , "--Low" , "10" -- units: % + , "--High" , "80" -- units: % + , "--low" , "#ed2902" -- green + , "--normal" , "#ed8b02" -- orange + , "--high" , "#02d310" -- red + + , "--" -- battery specific options + -- discharging status + , "-o" , "<left>% (<timeleft>)" + -- AC "on" status + , "-O" , "<fc=#dAA520>Charging</fc>" + -- charged status + , "-i" , "<fc=#02d310>Charged</fc>" + ] 50 + + -- time and date indicator + -- (%F = y-m-d date, %a = day of week, %T = h:m:s time) + , Run Date "<fc=#FFFFFF>%F (%a) %T</fc>" "date" 10 + + -- keyboard layout indicator + , Run Kbd [ ("us" , "<fc=#0584fc>EN</fc>") + , ("ru" , "<fc=#0584fc>RU</fc>") + ] + ] + } |