summaryrefslogtreecommitdiff
path: root/i3blocks/i3_battery.sh
diff options
context:
space:
mode:
Diffstat (limited to 'i3blocks/i3_battery.sh')
-rwxr-xr-xi3blocks/i3_battery.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/i3blocks/i3_battery.sh b/i3blocks/i3_battery.sh
deleted file mode 100755
index 97ea493..0000000
--- a/i3blocks/i3_battery.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/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