diff options
author | toni <matzeton@googlemail.com> | 2014-07-07 16:20:02 +0200 |
---|---|---|
committer | toni <matzeton@googlemail.com> | 2014-07-07 16:20:02 +0200 |
commit | 820766bd85b6b73cf5f7918da5f7b49fb856b5f9 (patch) | |
tree | c11f0c67ca1878c1d776bd4dda2a56f71f3242cc /configs | |
parent | f4ae4b5edf99b360d3e3ecdd767ee192f1b5f20c (diff) |
xmobar stuff
Diffstat (limited to 'configs')
-rwxr-xr-x | configs/xmobar_cputemp.sh | 8 | ||||
-rw-r--r-- | configs/xmobarrc | 10 |
2 files changed, 15 insertions, 3 deletions
diff --git a/configs/xmobar_cputemp.sh b/configs/xmobar_cputemp.sh new file mode 100755 index 0000000..15a2bf9 --- /dev/null +++ b/configs/xmobar_cputemp.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +if [ "x$1" = "xCPU" ]; then + sensors | sed -n 's/^CPU Temperature:\s*+\(.*\)°C\s*(\(.*\)/CPU TEMP: \1°C/p' +elif [ "x$1" = "xMB" ]; then + sensors | sed -n 's/^MB Temperature:\s*+\(.*\)°C\s*(\(.*\)/MB TEMP: \1°C/p' +fi +exit $? diff --git a/configs/xmobarrc b/configs/xmobarrc index 91b9e97..337b4be 100644 --- a/configs/xmobarrc +++ b/configs/xmobarrc @@ -1,16 +1,20 @@ Config { font = "-misc-fixed-*-*-*-*-18-*-*-*-*-*-*-*" , bgColor = "black" + , border = NoBorder + , borderColor = "black" , fgColor = "grey" , position = TopW L 85 - , commands = [ Run Thermal "THRM" [] 10 + , commands = [ Run Com "~/.xmobar_cputemp.sh" ["CPU"] "ctmp" 10 + , Run Com "~/.xmobar_cputemp.sh" ["MB"] "mtmp" 10 , Run Network "eth0" ["-L","0","-H","32","--normal","green","--high","red"] 10 + , Run Network "eth1" ["-L","0","-H","32","--normal","green","--high","red"] 10 , Run Cpu ["-L","15","-H","50","--normal","green","--high","red"] 10 , Run Memory ["Mem: %"] 10 , Run Swap [] 10 - , Run Date "%a %b %_d %Y %H:%M:%S" "date" 10 + , Run Date "%a %b (%V) %_d %Y %H:%M:%S" "date" 10 , Run StdinReader ] , sepChar = "%" , alignSep = "}{" - , template = "%StdinReader% }{ %THRM% | %cpu% | %memory% * %swap% | %eth0% | %date%" + , template = "%StdinReader% }{ %ctmp% | %mtmp% | %cpu% | %memory% * %swap% | %eth0% | %eth1% | %date%" } |