Very small program for GNU/Linux that runs in the background and warns you when your battery is low until you plug your laptop in.
libnotifyespeakmakegcc
Open a terminal and run these commands:
git clone https://github.com/JozanLeClerc/lowbat.git
cd lowbat
make
sudo make installNext you must find a way to get the script running right after loging in. Add this to your startup programs manager/rc file of choice:
lowbat > /dev/null 2>&1 &Note: to get notifications, make sure dunst is running in the background. In your startup programs manager/rc:
dunst > /dev/null 2>&1 &Only one option is available:
--say [MESSAGE]allows you to set an audio warning message when lowbat is active. By defaultlowbatdoesn’t send audio notifications and will only usenotify-send.
lowbat --say "your custom message" > /dev/null 2>&1 &sudo make uninstallFor more informations, check man lowbat.