diff --git a/.xmobarrc b/.xmobarrc deleted file mode 100644 index c28fac0..0000000 --- a/.xmobarrc +++ /dev/null @@ -1,106 +0,0 @@ -Config { - - -- Appearance - font = "xft:Open Sans:size=9:antialias=true" - , bgColor = "#1c1c1c" - , fgColor = "#d0d0d0" - , position = TopW L 100 -- Leave space for Trayer - - -- Layout - , sepChar = "%" -- delineator between plugin names and straight text - , alignSep = "}{" -- separator between left-right alignment - , template = " %StdinReader% }{ %YBRK% | UV: %uv Brisbane% | %cpu% %coretemp% %cpufreq% | %memory% | %swap% | %battery% | %date% " - - -- Behaviour - , lowerOnStart = False -- send to bottom of window stack on start - , pickBroadest = False -- choose widest display (multi-monitor) - , overrideRedirect = False -- set the Override Redirect flag (Xlib) - - --Plugins - , commands = - -- CPU Activity Monitor - [ Run Cpu [ "--template" , "CPU: %" - , "--Low" , "30" -- units: % - , "--High" , "70" -- units: % - , "--low" , "#5faf00" - , "--normal" , "#d0d0d0" - , "--high" , "#af005f" - ] 10 - - -- cpu core temperature monitor - , Run CoreTemp [ "--template" , "Temp: °C °C" - , "--Low" , "30" -- units: °C - , "--High" , "80" -- units: °C - , "--low" , "#5faf00" - , "--normal" , "#d0d0d0" - , "--high" , "#af005f" - ] 50 - - -- CPU Frequency - , Run CpuFreq [ "--template" , "GHz GHz" - ] 10 - - -- Memory Usage Monitor - , Run Memory [ "--template" , "MEM %" - , "--Low" , "20" -- units: % - , "--High" , "90" -- units: % - , "--low" , "#5faf00" - , "--normal" , "#d0d0d0" - , "--high" , "#af005f" - ] 10 - - -- Battery Monitor - , Run BatteryP ["BAT"] [ "--template" , "BAT: " - , "--Low" , "10" -- units: % - , "--High" , "80" -- units: % - , "--low" , "#af005f" - , "--normal" , "#d0d0d0" - , "--high" , "#5faf00" - - , "--" -- battery specific options - -- discharging status - , "-o" , "% ()" - -- AC "on" status - , "-O" , "Charging" - -- charged status - , "-i" , "Charged" - ] 50 - - -- Read from STDIN - , Run StdinReader - - -- Display the current Wireless SSID - -- , Run Wireless "wlp1s0" [ "-t", "" ] 10 - - -- Weather Monitor - , Run Weather "YBRK" [ "--template" , " C % hPa" - , "--Low" , "10" - , "--High" , "35" - , "--low" , "#5faf00" - , "--normal" , "#d0d0d0" - , "--high" , "#af005f" - ] 36000 - - -- Time and Date Display - , Run Date "%a %b %_d %H:%M" "date" 10 - - -- Display the current UV - , Run UVMeter "Brisbane" [ "-H" , "3" - , "-L" , "3" - , "--low" , "#5faf00" - , "--high" , "#af005f" - ] 900 - - -- MPD status - , Run MPD ["-t"," - (<album>) <statei> ","--", "-P", ">>", "-Z", "|", "-S", "><"] 10 - - , Run Swap [] 10 - , Run DynNetwork [ "--template" , "<dev>: <tx>kB/s" - , "--Low" , "50000" -- units: B/s - , "--High" , "500000" -- units: B/s - , "--low" , "#5faf00" - , "--normal" , "#d0d0d0" - , "--high" , "#af005f" - ] 10 - ] -}