diff options
Diffstat (limited to '.scripts/stats')
-rwxr-xr-x | .scripts/stats | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.scripts/stats b/.scripts/stats new file mode 100755 index 0000000..0072018 --- /dev/null +++ b/.scripts/stats @@ -0,0 +1,10 @@ +#!/bin/sh + +net="$(hasnet && echo up || echo down)" +temp="$(awk '{print $2 "°C"}' /proc/acpi/ibm/thermal)" +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) + +echo "$battery ($charging) | $temp | $net | $weather | $time" |