From 032202234f15e23a499540874158570fd6bbb89f Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Fri, 15 May 2020 15:22:25 +1000 Subject: [PATCH] Swapped MultiCPU for Cpu --- .xmobarrc | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.xmobarrc b/.xmobarrc index c2ff98a..804635d 100644 --- a/.xmobarrc +++ b/.xmobarrc @@ -4,12 +4,12 @@ Config { font = "xft:OpenSans:size=9:antialias=true" , bgColor = "#073642" , fgColor = "#93a1a1" - , position = TopW L 95 + , position = TopW L 93 -- Leave space for Trayer -- Layout , sepChar = "%" -- delineator between plugin names and straight text , alignSep = "}{" -- separator between left-right alignment - , template = "%StdinReader% } %mpd% { %multicpu% %coretemp% %cpufreq% | %memory% | %battery% | %YBRK% | %uv Brisbane% | %date%" + , template = "%StdinReader% } { %YBRK% | UV: %uv Brisbane% | %cpu% %coretemp% %cpufreq% | %memory% | %swap% | %dynnetwork% | %battery% | %date%" -- Behaviour , lowerOnStart = False -- send to bottom of window stack on start @@ -19,7 +19,7 @@ Config { --Plugins , commands = -- CPU Activity Monitor - [ Run MultiCpu [ "--template" , "CPU: %|%" + [ Run Cpu [ "--template" , "CPU: %" , "--Low" , "30" -- units: % , "--High" , "70" -- units: % , "--low" , "#2aa198" @@ -73,7 +73,7 @@ Config { -- , Run Wireless "wlp1s0" [ "-t", "" ] 10 -- Weather Monitor - , Run Weather "YBRK" [ "--template" , " °C % hPa" + , Run Weather "YBRK" [ "--template" , " C % hPa" , "--Low" , "10" , "--High" , "35" , "--low" , "#2aa198" @@ -90,7 +90,17 @@ Config { , "--low" , "#859900" , "--high" , "#dc322f" ] 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" , "#2d9574" + , "--normal" , "orange" + , "--high" , "red" + ] 10 ] }