Update Polybar

This commit is contained in:
Marco Thomas
2020-11-11 19:13:02 +01:00
parent ac1c15d128
commit 9b66bdd5f5
8 changed files with 57 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/sh
case "$1" in
--popup)
notify-send "CPU time (%)" "$(ps axch -o cmd:10,pcpu k -pcpu | head | awk '$0=$0"%"' )"
;;
*)
echo "$(grep 'cpu ' /proc/stat | awk '{cpu_usage=($2+$4)*100/($2+$4+$5)} END {printf "%0.2f%", cpu_usage}')"
;;
esac

View File

@@ -0,0 +1,9 @@
#!/bin/sh
case "$1" in
--popup)
notify-send "Memory (%)" "$(ps axch -o cmd:10,pmem k -pmem | head | awk '$0=$0"%"' )"
;;
*)
echo "$(free -h --si | awk '/^Mem:/ {print $3 "/" $2}')"
;;
esac

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "$(sensors | grep Tctl | head -1 | awk '{print $2}')"