🔥 Removed batnotify, installed valgrind

This commit is contained in:
z3rOR0ne 2022-06-26 05:57:16 -07:00
parent f105f01ab2
commit 2ade3aad61

View file

@ -1,11 +0,0 @@
#!/bin/bash
while [ true ] ; do
PWRLVL=$(cat /sys/class/power_supply/BAT1/capacity)
if [ $PWRLVL -eq 15 ] ; then
exec notify-send "Battery is at 15%!!";
break;
else
sleep 15s;
fi
done