aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin/notistats
diff options
context:
space:
mode:
authorYaroslav de la Peña Smirnov <yps@yaroslavps.com>2021-03-25 19:07:20 +0300
committerYaroslav de la Peña Smirnov <yps@yaroslavps.com>2021-03-25 19:07:20 +0300
commit10af684bcb10b903453fb6926e369694c402e248 (patch)
tree3b18d573a8788372655122c12f92e26febd80f50 /dotfiles/.local/bin/notistats
parentde7fcb3e45ae5da908ad1e8d1ef1fd77b15fe358 (diff)
downloadswayrice-10af684bcb10b903453fb6926e369694c402e248.tar.gz
swayrice-10af684bcb10b903453fb6926e369694c402e248.zip
Small changes
* (Temporarily?) change underline cursor to block, as it is not very convenient the way it is rendered in foot. * Other changes.
Diffstat (limited to 'dotfiles/.local/bin/notistats')
-rwxr-xr-xdotfiles/.local/bin/notistats2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/.local/bin/notistats b/dotfiles/.local/bin/notistats
index 83e2f80..cd50276 100755
--- a/dotfiles/.local/bin/notistats
+++ b/dotfiles/.local/bin/notistats
@@ -3,7 +3,7 @@
body=$(df -h / | tail -1 | awk '{print "Free space on /:\t" $4}';
free -m | sed '2!d' | awk '{print "Memory in use:\t" $3"/"$2"MB"}';
lscpu | grep 'CPU MHz' | awk '{print "CPU clock:\t" $3"MHz"}';
-sensors | grep 'Package id 0' | sed 's/Package id 0/CPU temp/' | awk '{print $1 $2 "\t" $3}';
+sensors | grep 'Core 0' | sed 's/Core 0/CPU temp/' | awk '{print $1 $2 "\t" $3}';
sensors | grep 'fan')
if [ -f /sys/class/power_supply/BAT0/uevent ]; then
body=$body"\n"$(echo print\(\'BAT0 drainage:\\t{}W\'.format\($(grep 'POWER_SUPPLY_POWER_NOW' /sys/class/power_supply/BAT0/uevent | awk -F '=' '{print $2}')/1000000\)\) | python)