-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbattery_watcher
executable file
·30 lines (25 loc) · 1.29 KB
/
battery_watcher
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# / / ___ _ / /_ / /_ ___ ____ __ ___ __ ___ _ / /_ ____ / / ___ ____
# / _ Y _ `// __// __// -_)/ __// // / |/|/ // _ `// __// __// _ Y -_)/ __/
#/_.__|_,_/ \__/ \__/ \__//_/ \_, /|__,__/ \_,_/ \__/ \__//_//_|__//_/
# ___/
#source:: https://github.com/Bryan-netizen/bash-scripture/blob/main/batterywatcher
#email:: [email protected]
# Requirements:
# telegram-send: pip3 install telegram send
# acpi :apt install acpi (available for most distros)
# telegram-app: You know where to find this
# Telegram bot :Set this up with botfather
# Resources to help with the set up :: https://www.linux-magazine.com/Online/Blogs/Productivity-Sauce/Push-Messages-from-the-Command-Line-to-Telegram)
# What does it do? Pushes a battery low notification to my phone.
# Why did I write this script?
#I run a plex server and torrent client from my laptop, in a home office.
#Randomly (usually meal breaks) the laptop goes off cause i'm running it on battery power.
#So this should help remind me to plug in power before it shutsdown.
#!/bin/sh
[ "$(acpi |
grep 'Battery 0' |
sed 's/,/:/g' |
awk '{print $4}' |
cut -d ':' -f1 |
cut -d '%' -f1)" -le '30' ] &&
/usr/local/bin/telegram-send "Battery Low Recharge 🕯️"