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: %|%" , "--Low" , "30" -- units: % , "--High" , "70" -- units: % , "--low" , "lightblue" , "--normal" , "green" , "--high" , "red" ] 10 -- cpu core temperature monitor , Run CoreTemp [ "--template" , "Temp: °C|°C" , "--Low" , "30" -- units: °C , "--High" , "80" -- units: °C , "--low" , "lightblue" , "--normal" , "green" , "--high" , "red" ] 50 -- CPU Frequency , Run CpuFreq [ "--template" , "GHz GHz" ] 10 -- Memory Usage Monitor , Run Memory [ "--template" , "MEM %" , "--Low" , "20" -- units: % , "--High" , "90" -- units: % , "--low" , "lightblue" , "--normal" , "green" , "--high" , "red" ] 10 -- Battery Monitor , Run Battery [ "--template" , "BAT: " , "--Low" , "10" -- units: % , "--High" , "80" -- units: % , "--low" , "red" , "--normal" , "green" , "--high" , "lightblue" , "--" -- battery specific options -- discharging status , "-o" , "% ()" -- AC "on" status , "-O" , "Charging" -- charged status , "-i" , "Charged" ] 50 -- Read from STDIN , Run StdinReader -- Weather Monitor , Run Weather "YBRK" [ "--template" , " °C" , "--Low" , "10" , "--High" , "35" , "--low" , "lightblue" , "--normal" , "green" , "--high" , "red" ] 36000 -- Network Activity Monitor , Run DynNetwork [ "--template" , ": kB/s|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 "%a %b %_d %H:%M" "date" 10 ] }