tmux-kanagawa/scripts/battery.sh

126 lines
2.3 KiB
Bash
Raw Normal View History

2020-03-14 22:42:06 +01:00
#!/usr/bin/env bash
# setting the locale, some users have issues with different locales, this forces the correct one
export LC_ALL=en_US.UTF-8
2020-05-27 00:30:17 +02:00
linux_acpi() {
arg=$1
BAT=$(ls -d /sys/class/power_supply/BAT* | head -1)
if [ ! -x "$(which acpi 2> /dev/null)" ];then
case "$arg" in
status)
cat $BAT/status
;;
2020-03-14 22:42:06 +01:00
percent)
cat $BAT/capacity
;;
*)
;;
esac
else
case "$arg" in
status)
acpi | cut -d: -f2- | cut -d, -f1 | tr -d ' '
;;
percent)
acpi | cut -d: -f2- | cut -d, -f2 | tr -d '% '
;;
*)
;;
esac
fi
}
2020-05-27 00:30:17 +02:00
2020-03-14 22:42:06 +01:00
battery_percent()
{
2020-04-07 21:52:41 +02:00
# Check OS
case $(uname -s) in
Linux)
percent=$(linux_acpi percent)
[ -n "$percent" ] && echo " $percent"
2020-04-07 21:52:41 +02:00
;;
Darwin)
echo $(pmset -g batt | grep -Eo '[0-9]?[0-9]?[0-9]%')
;;
2020-09-02 18:41:30 +02:00
FreeBSD)
echo $(apm | sed '8,11d' | grep life | awk '{print $4}')
;;
2020-04-07 21:52:41 +02:00
CYGWIN*|MINGW32*|MSYS*|MINGW*)
# leaving empty - TODO - windows compatability
;;
*)
;;
esac
2020-03-14 22:42:06 +01:00
}
battery_status()
{
2020-04-07 21:52:41 +02:00
# Check OS
case $(uname -s) in
Linux)
2020-09-02 18:41:30 +02:00
status=$(linux_acpi status)
2020-04-07 21:52:41 +02:00
;;
Darwin)
status=$(pmset -g batt | sed -n 2p | cut -d ';' -f 2)
;;
2020-09-02 18:41:30 +02:00
FreeBSD)
status=$(apm | sed '8,11d' | grep Status | awk '{printf $3}')
;;
2020-04-07 21:52:41 +02:00
CYGWIN*|MINGW32*|MSYS*|MINGW*)
# leaving empty - TODO - windows compatability
;;
*)
;;
esac
2020-03-14 22:42:06 +01:00
2020-09-02 18:41:30 +02:00
case $status in
discharging|Discharging)
echo ''
;;
high)
echo ''
;;
charging)
echo 'AC'
;;
*)
echo 'AC'
;;
esac
### Old if statements didn't work on BSD, they're probably not POSIX compliant, not sure
# if [ $status = 'discharging' ] || [ $status = 'Discharging' ]; then
# echo ''
# # elif [ $status = 'charging' ]; then # This is needed for FreeBSD AC checking support
# # echo 'AC'
# else
# echo 'AC'
# fi
2020-03-14 22:42:06 +01:00
}
main()
{
bat_stat=$(battery_status)
bat_perc=$(battery_percent)
2020-06-01 01:41:00 +02:00
if [ -z "$bat_stat" ]; then # Test if status is empty or not
echo "$bat_perc"
elif [ -z "$bat_perc" ]; then # In case it is a desktop with no battery percent, only AC power
echo "$bat_stat"
2020-06-01 01:42:37 +02:00
else
echo "$bat_stat $bat_perc"
2020-06-01 01:41:00 +02:00
fi
2020-03-14 22:42:06 +01:00
}
2020-03-15 00:57:01 +01:00
#run main driver program
2020-03-14 22:42:06 +01:00
main