diff options
Diffstat (limited to 'tmux')
| -rwxr-xr-x | tmux/battery.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux/battery.sh b/tmux/battery.sh index d981ae5..a306828 100755 --- a/tmux/battery.sh +++ b/tmux/battery.sh @@ -11,9 +11,9 @@ percentage_int=$(printf "%.0f%" "${percentage_raw%%%}") # when battery is low, highlight the widget if [[ $percentage_int -le "10" ]]; then - printf "#[[bg=red,fg=brightwhite]]"; + printf "#[bg=red,fg=brightwhite]"; elif [[ $percentage_int -le "15" ]]; then - printf "#[[bg=brightyellow]]"; + printf "#[bg=brightyellow]"; fi printf " "; # left padding |
