mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
12 lines
304 B
Bash
Executable file
12 lines
304 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# the purpose of the script is to notify when battery percentage is low
|
|
|
|
while true; do
|
|
if [[ "$(cat /sys/class/power_supply/BAT0/capacity)" -le 30 ]]; then
|
|
notify-send --urgency=CRITICAL "Battery Low" "Consider plugging cable in"
|
|
sleep 1200
|
|
else
|
|
sleep 120
|
|
fi
|
|
done
|