Created
April 25, 2017 11:55
-
-
Save theelous3/6f021ee51c1ef0323ddb5b673e73d1e8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Config { | |
-- appearance | |
font = "xft:Bitstream Vera Sans Mono:size=9:bold:antialias=true" | |
, bgColor = "#3B3A32" | |
, fgColor = "#D9D7BF" | |
, position = TopW C 98 | |
, border = BottomB | |
, borderColor = "#000000" | |
-- layout | |
, sepChar = "%" -- delineator between plugin names and straight text | |
, alignSep = "}{" -- separator between left-right alignment | |
, template = " %multicpu% | %memory% | %dynnetwork% }{ %RJTT% | %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 = | |
-- weather monitor | |
[ Run Weather "RJTT" [ "--template", "<skyCondition> | <fc=#4682B4><tempC></fc>°C | <fc=#4682B4><rh></fc>% | <fc=#4682B4><pressure></fc>hPa" | |
] 36000 | |
-- network activity monitor (dynamic interface resolution) | |
, Run DynNetwork [ "--template" , "<dev>: <tx>kB/s|<rx>kB/s" | |
, "--Low" , "1000" -- units: B/s | |
, "--High" , "5000" -- units: B/s | |
, "--low" , "#63a557" | |
, "--normal" , "#e2801d" | |
, "--high" , "#e2371d" | |
] 10 | |
-- cpu activity monitor | |
, Run MultiCpu [ "--template" , "Cpu: <total0>%|<total1>%" | |
, "--Low" , "50" -- units: % | |
, "--High" , "85" -- units: % | |
, "--low" , "#63a557" | |
, "--normal" , "#e2801d" | |
, "--high" , "#e2371d" | |
] 10 | |
-- memory usage monitor | |
, Run Memory [ "--template" ,"Mem: <usedratio>%" | |
, "--Low" , "20" -- units: % | |
, "--High" , "90" -- units: % | |
, "--low" , "#63a557" | |
, "--normal" , "#e2801d" | |
, "--high" , "#e2371d" | |
] 10 | |
-- time and date indicator | |
-- (%F = y-m-d date, %a = day of week, %T = h:m:s time) | |
, Run Date "<fc=#ABABAB>%F (%a) %T</fc>" "date" 10 | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment