22 lines
734 B
Bash
Executable file
22 lines
734 B
Bash
Executable file
#!/bin/bash
|
|
|
|
icon=""
|
|
|
|
percent="$(upower -d | awk '/percentage/ {print $2}' | head -n 1)"
|
|
remaining="$(upower -d | awk -F: '/time to empty/ {print $2}' | awk '{print $1,$2}' | head -n 1)"
|
|
|
|
if upower -d | grep '\bcharging\b' >/dev/null 2>&1; then
|
|
echo "${icon} ${percent}"
|
|
elif upower -d | grep '\bdischarging\b' >/dev/null 2>&1; then
|
|
if [ -n "$remaining" ] && [ "$(echo "$percent" | awk -F% '{print $1}')" -lt "$THRESHOLD" ]; then
|
|
notify-send "CHARGE BATTERY"
|
|
for file in /dev/pts/*; do
|
|
if [ "$(ls -l "$file" | awk '{print $5}')" = '136,' ]; then
|
|
echo "CHARGE BATTERY" >> "$file"
|
|
fi
|
|
done
|
|
fi
|
|
echo "${icon} ${percent} (${remaining})"
|
|
else
|
|
echo ""
|
|
fi
|