aboutsummaryrefslogtreecommitdiffstats
path: root/dwm-statusbar
diff options
context:
space:
mode:
authorEduardo Pedroni <e.pedroni91@gmail.com>2017-01-11 16:56:17 +0100
committerEduardo Pedroni <e.pedroni91@gmail.com>2017-01-11 16:56:17 +0100
commite1a4319cf486c029fd88fb5000dfd56eb4e2d7d8 (patch)
tree758f44062b7fa119c0aac52d059af3c998339326 /dwm-statusbar
parent9a5d4ba79de8e0e51ffb56b3dc3c2d9ee86400bf (diff)
Updated battery thresholds, added trackpad lock to laptop config
Diffstat (limited to 'dwm-statusbar')
-rwxr-xr-xdwm-statusbar6
1 files changed, 3 insertions, 3 deletions
diff --git a/dwm-statusbar b/dwm-statusbar
index 9891a29..fd5b5f2 100755
--- a/dwm-statusbar
+++ b/dwm-statusbar
@@ -92,15 +92,15 @@ print_battery() {
bat_colour=$colour_critical
icon_colour=$colour_critical
icon="\uE20E"
- elif [ $bat_capacity -lt 25 ]; then
+ elif [ $bat_capacity -lt 35 ]; then
bat_colour=$colour_warning
icon_colour=$colour_warning
icon="\uE211"
- elif [ $bat_capacity -lt 50 ]; then
+ elif [ $bat_capacity -lt 65 ]; then
bat_colour=$colour_normal
icon_colour=$colour_neutral
icon="\uE1FB"
- elif [ $bat_capacity -lt 75 ]; then
+ elif [ $bat_capacity -lt 85 ]; then
bat_colour=$colour_normal
icon_colour=$colour_neutral
icon="\uE210"