From 2ade3aad61e0ea7bb848931f390d4790e5f700c7 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Sun, 26 Jun 2022 05:57:16 -0700 Subject: [PATCH] :fire: Removed batnotify, installed valgrind --- runit_scripts/batnotify/run | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100755 runit_scripts/batnotify/run diff --git a/runit_scripts/batnotify/run b/runit_scripts/batnotify/run deleted file mode 100755 index 5a0ffb41..00000000 --- a/runit_scripts/batnotify/run +++ /dev/null @@ -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