Add battery warning
This commit is contained in:
parent
404e096bf8
commit
b7c3704c29
1 changed files with 19 additions and 0 deletions
19
dotfiles/.config/sway/bin/battery.sh
Executable file
19
dotfiles/.config/sway/bin/battery.sh
Executable file
|
@ -0,0 +1,19 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# I run this in crontab every five minutes
|
||||||
|
|
||||||
|
warning=10
|
||||||
|
error=5
|
||||||
|
|
||||||
|
battery_percent="$(cat /sys/class/power_supply/BAT0/capacity)"
|
||||||
|
|
||||||
|
if [[ ${battery_percent} -gt ${warning} ]]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
if [[ ${battery_percent} -lt ${warning} ]]; then
|
||||||
|
mtype="warning"
|
||||||
|
fi
|
||||||
|
if [[ ${battery_percent} -lt ${error} ]]; then
|
||||||
|
mtype="error"
|
||||||
|
fi
|
||||||
|
swaynag -s "Dismiss" -e bottom -t ${mtype} -m "WARNING: Battery at ${battery_percent}%"
|
||||||
|
exit 0
|
Loading…
Add table
Reference in a new issue