From 956df69d7496081db5e7b3621a0bcc7b9d7f7dfc Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Wed, 8 Dec 2021 11:52:16 +0100 Subject: move to .config folder --- .config/i3blocks/i3_battery.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 .config/i3blocks/i3_battery.sh (limited to '.config/i3blocks/i3_battery.sh') diff --git a/.config/i3blocks/i3_battery.sh b/.config/i3blocks/i3_battery.sh new file mode 100755 index 0000000..97ea493 --- /dev/null +++ b/.config/i3blocks/i3_battery.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +BAT=$(acpi -b | grep -E -o '[0-9][0-9]?%') +CHECK_CHARGING=$(acpi -b | grep -E -o 'Charging') + +# Full and short texts +echo "Battery: $BAT" +echo "BAT: $BAT" + +if [ "$CHECK_CHARGING" != "" ]; then + echo "#1abc9c" + exit 0 +fi +# Set urgent flag below 5% or use orange below 20% +[ ${BAT%?} -le 5 ] && exit 33 +[ ${BAT%?} -le 35 ] && echo "#d35400" + +exit 0 -- cgit v1.2.3-71-g8e6c