aboutsummaryrefslogtreecommitdiff
path: root/x/battery.pl
diff options
context:
space:
mode:
authorBryson Steck <brysonsteck@protonmail.com>2023-05-31 22:46:32 -0600
committerBryson Steck <brysonsteck@protonmail.com>2023-05-31 22:46:32 -0600
commit698a8a7f30b2a22672b677078fcfe5ac698020da (patch)
treefb4d9096733b9dba52620f72fe1d3fe22ed53626 /x/battery.pl
parent3991ac66a5269986b066338c404daea026b4ecbb (diff)
downloaddotfiles-698a8a7f30b2a22672b677078fcfe5ac698020da.tar
dotfiles-698a8a7f30b2a22672b677078fcfe5ac698020da.tar.gz
dotfiles-698a8a7f30b2a22672b677078fcfe5ac698020da.tar.bz2
some more x scripts
Diffstat (limited to 'x/battery.pl')
-rwxr-xr-xx/battery.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/x/battery.pl b/x/battery.pl
index b98707a..10a3673 100755
--- a/x/battery.pl
+++ b/x/battery.pl
@@ -22,13 +22,13 @@ while (1) {
if (int($battery_level) <= int($CRITICAL_LEVEL)) {
$CRITICAL = 'def';
$sent = 'def';
- system "notify-send -i \"battery-empty\" -t 0 -u critical \"BATTERY CRITICAL\" \"Battery level is ${battery_level}%\n\nCharge the system NOW.\""
+ system "notify-send -i \"battery-empty-symbolic\" -t 0 -u critical \"BATTERY CRITICAL\" \"Battery level is ${battery_level}%\n\nCharge the system NOW.\""
}
} if (!$LOW && !$sent) {
if (int($battery_level) <= int($LOW_LEVEL)) {
$LOW = 'def';
$sent = 'def';
- system "notify-send -i \"battery-caution\" -t 0 -u normal \"BATTERY LOW\" \"Battery level is ${battery_level}%\n\nCharge the system soon.\""
+ system "notify-send -i \"battery-caution-symbolic\" -t 0 -u normal \"BATTERY LOW\" \"Battery level is ${battery_level}%\n\nCharge the system soon.\""
}
} if (int($battery_level) <= int($DEAD_LEVEL)) {
system "notify-send -t 0 -u critical \"SHUTTING DOWN\" \"Battery level is too low. The system will shutdown in 2 minutes to prevent corruption.\n\nCharge the system NOW to cancel the shutdown.\"";
@@ -40,7 +40,7 @@ while (1) {
$CRITICAL = undef;
$LOW = undef;
system "doas shutdown -c";
- system "notify-send -t 3000 -i \"battery-good-charging\" \"System is now charging\"";
+ system "notify-send -t 3000 -i \"battery-good-charging-symbolic\" \"System is now charging\"";
}
}