diff options
Diffstat (limited to 'tag-xmobar')
-rw-r--r-- | tag-xmobar/xmobarrc | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/tag-xmobar/xmobarrc b/tag-xmobar/xmobarrc index ae7c7112..dd54a928 100644 --- a/tag-xmobar/xmobarrc +++ b/tag-xmobar/xmobarrc @@ -1,8 +1,8 @@ Config { font = "-*-terminus-medium-r-*-*-12-*-*-*-*-*-*-*" , borderColor = "#657b83" , border = TopB - , bgColor = "#002b36" - , fgColor = "#fdf6e3" + , bgColor = "#fdf6e3" + , fgColor = "#657b83" , position = BottomW L 90 , lowerOnStart = False , hideOnStart = False @@ -10,23 +10,23 @@ Config { font = "-*-terminus-medium-r-*-*-12-*-*-*-*-*-*-*" , commands = [ Run Weather "EGNX" ["-t", "<tempC>ºC" ,"-L", "12" ,"-H", "22" - ,"--low", "lightblue" - ,"--normal", "green" - ,"--high", "red" + ,"--low", "#268bd2" + ,"--normal", "#859900" + ,"--high", "#dc322f" ] 36000 , Run DynNetwork ["-t", "Net: <rx>¦<tx>KB" ,"-L", "512" ,"-H", "10240" - ,"--low", "green" - ,"--normal", "yellow" - ,"--high", "red" + ,"--low", "#859900" + ,"--normal", "#b58900" + ,"--high", "#dc322f" ,"-m", "5" ] 10 , Run Cpu ["-p", "3" ,"-L", "3" ,"-H", "50" - ,"--normal", "green" - ,"--high", "red" + ,"--normal", "#859900" + ,"--high", "#dc322f" ] 10 , Run Memory ["-p", "3" ,"-t", "Mem: <usedratio>%" @@ -36,5 +36,5 @@ Config { font = "-*-terminus-medium-r-*-*-12-*-*-*-*-*-*-*" ] , sepChar = "%" , alignSep = "}{" - , template = "%StdinReader% }{ %cpu% | %memory% | %dynnetwork% | %EGNX% | <fc=#ee9a00>%date%</fc>" + , template = "%StdinReader% }{ %cpu% | %memory% | %dynnetwork% | %EGNX% | <fc=#2aa198>%date%</fc>" } |