diff options
author | Marvin Borner | 2022-11-01 14:13:08 +0100 |
---|---|---|
committer | Marvin Borner | 2022-11-01 14:13:08 +0100 |
commit | 29c894db157e9b2bb2a392e0abb83ac700a839d5 (patch) | |
tree | 1e630bfabf1d94b61a88ab7b6e8b631113b6f7fd /.scripts/stats | |
parent | 600de714ba13c1ccd54357554898db909de5af81 (diff) |
sync
Diffstat (limited to '.scripts/stats')
-rwxr-xr-x | .scripts/stats | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/.scripts/stats b/.scripts/stats index 0072018..a71b40f 100755 --- a/.scripts/stats +++ b/.scripts/stats @@ -6,5 +6,17 @@ battery="$(cat /sys/class/power_supply/BAT0/capacity)%" charging="$(awk '{print $1*10^-6 "W"}' /sys/class/power_supply/BAT0/power_now)" time=$(date +'%d.%m | %H:%M') weather=$(weather text) +mem=$(free -m | awk '/^Mem:/{printf("%.1fGb\n",$3/1000)}') +swap=$(free -m | awk '/^Swap:/{printf("%.1fGb\n",$3/1000)}') +cpu=$(awk '{u=$2+$4; t=$2+$4+$5; if (NR==1){u1=u; t1=t;} else printf "%.1f%", (($2+$4-u1) * 100 / (t-t1)); }' <(grep 'cpu ' /proc/stat) <(sleep .5; grep 'cpu ' /proc/stat)) -echo "$battery ($charging) | $temp | $net | $weather | $time" +mouse=$(upower -d | grep -A 10 mouse | awk '/percentage/{printf("| M%s ",$2)}') + +if bluetooth | grep -q on; then +btdev=$(bluetoothctl info) +btname=$(echo "$btdev" | awk '/Name/{$1=""; printf("|%s",$0)}') +btbat=$(echo "$btdev" | awk '/Battery/{printf(" %s ",$4)}') +bt="$btname$btbat" +fi + +echo "$battery ($charging) $mouse$bt| $temp | $cpu | $mem | $swap | $net | $weather | $time" |