Switched to OpenSans
This commit is contained in:
parent
d3dbc7c975
commit
b7cb2b3ee4
1117
.vim/colors/solarized.vim
Normal file
1117
.vim/colors/solarized.vim
Normal file
File diff suppressed because it is too large
Load diff
92
.xmobarrc
Normal file
92
.xmobarrc
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
Config {
|
||||||
|
|
||||||
|
-- Appearance
|
||||||
|
font = "xft:OpenSans:size=10:antialias=true"
|
||||||
|
, bgColor = "black"
|
||||||
|
, fgColor = "grey"
|
||||||
|
, position = TopW L 90
|
||||||
|
|
||||||
|
-- Layout
|
||||||
|
, sepChar = "%"
|
||||||
|
, alignSep = "}{"
|
||||||
|
, template = "%StdinReader% }{ %multicpu% %coretemp% %cpufreq% | %memory% | %dynnetwork% | %battery% | %YBRK% | %date%"
|
||||||
|
|
||||||
|
-- Behaviour
|
||||||
|
, lowerOnStart = False
|
||||||
|
, pickBroadest = True -- choose widest display (multi-monitor)
|
||||||
|
|
||||||
|
--Plugins
|
||||||
|
, commands =
|
||||||
|
-- CPU Activity Monitor
|
||||||
|
[ Run MultiCpu [ "--template" , "CPU: <total0>%|<total2>%"
|
||||||
|
, "--Low" , "30" -- units: %
|
||||||
|
, "--High" , "70" -- units: %
|
||||||
|
, "--low" , "lightblue"
|
||||||
|
, "--normal" , "green"
|
||||||
|
, "--high" , "red"
|
||||||
|
] 10
|
||||||
|
|
||||||
|
-- cpu core temperature monitor
|
||||||
|
, Run CoreTemp [ "--template" , "Temp: <core0>°C|<core1>°C"
|
||||||
|
, "--Low" , "30" -- units: °C
|
||||||
|
, "--High" , "80" -- units: °C
|
||||||
|
, "--low" , "lightblue"
|
||||||
|
, "--normal" , "green"
|
||||||
|
, "--high" , "red"
|
||||||
|
] 50
|
||||||
|
|
||||||
|
-- CPU Frequency
|
||||||
|
, Run CpuFreq [ "--template" , "<cpu0>GHz <cpu1>GHz"
|
||||||
|
] 10
|
||||||
|
|
||||||
|
-- Memory Usage Monitor
|
||||||
|
, Run Memory [ "--template" , "MEM <usedratio>%"
|
||||||
|
, "--Low" , "20" -- units: %
|
||||||
|
, "--High" , "90" -- units: %
|
||||||
|
, "--low" , "lightblue"
|
||||||
|
, "--normal" , "green"
|
||||||
|
, "--high" , "red"
|
||||||
|
] 10
|
||||||
|
|
||||||
|
-- Battery Monitor
|
||||||
|
, Run Battery [ "--template" , "BAT: <acstatus>"
|
||||||
|
, "--Low" , "10" -- units: %
|
||||||
|
, "--High" , "80" -- units: %
|
||||||
|
, "--low" , "red"
|
||||||
|
, "--normal" , "green"
|
||||||
|
, "--high" , "lightblue"
|
||||||
|
|
||||||
|
, "--" -- battery specific options
|
||||||
|
-- discharging status
|
||||||
|
, "-o" , "<left>% (<timeleft>)"
|
||||||
|
-- AC "on" status
|
||||||
|
, "-O" , "<fc=#FFA500>Charging</fc>"
|
||||||
|
-- charged status
|
||||||
|
, "-i" , "<fc=#ADD8E6>Charged</fc>"
|
||||||
|
] 50
|
||||||
|
|
||||||
|
-- Read from STDIN
|
||||||
|
, Run StdinReader
|
||||||
|
|
||||||
|
-- Weather Monitor
|
||||||
|
, Run Weather "YBRK" [ "--template" , " <tempC>°C"
|
||||||
|
, "--Low" , "10"
|
||||||
|
, "--High" , "35"
|
||||||
|
, "--low" , "lightblue"
|
||||||
|
, "--normal" , "green"
|
||||||
|
, "--high" , "red"
|
||||||
|
] 36000
|
||||||
|
|
||||||
|
-- Network Activity Monitor
|
||||||
|
, Run DynNetwork [ "--template" , "<dev>: <tx>kB/s|<rx>kB/s"
|
||||||
|
, "--Low" , "1000" -- units: kB/s
|
||||||
|
, "--High" , "5000" -- units: kB/s
|
||||||
|
, "--low" , "lightblue"
|
||||||
|
, "--normal" , "green"
|
||||||
|
, "--high" , "red"
|
||||||
|
] 10
|
||||||
|
|
||||||
|
-- Time and Date Display
|
||||||
|
, Run Date "<fc=#ee9a00>%a %b %_d %H:%M</fc>" "date" 10
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue