Python daemon to notify you when you should plug and unplug your computer. The need for this project was born out from my carelessness of letting my previous Macbook charge for hours, until my battery stopped holding charge, and I had to move to a new machine.
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
nohup python3 -u -m BatterySafe &
tail -f nohup.out
ps ax | grep BatterySafe
kill -9 <process_id>

