diff options
author | InigoGutierrez <inigogf.95@gmail.com> | 2019-04-09 16:26:46 +0200 |
---|---|---|
committer | InigoGutierrez <inigogf.95@gmail.com> | 2019-04-09 16:28:27 +0200 |
commit | 6e1ce4f87831d3761a46497f80e56ac7a73e14c8 (patch) | |
tree | 1ce2f613f63e9d0a8b3443ef70feb81d6ad1f583 /i3blocks | |
parent | 8da9dfb0098bf119b278e043f93a56c629013b26 (diff) | |
download | scripts-6e1ce4f87831d3761a46497f80e56ac7a73e14c8.tar.gz scripts-6e1ce4f87831d3761a46497f80e56ac7a73e14c8.zip |
Minor changes.
Diffstat (limited to 'i3blocks')
-rwxr-xr-x | i3blocks/i3battery.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i3blocks/i3battery.sh b/i3blocks/i3battery.sh index 1e8d749..d6acda6 100755 --- a/i3blocks/i3battery.sh +++ b/i3blocks/i3battery.sh @@ -20,7 +20,7 @@ elif [ "$capacity" -ge 60 ]; then color="#ebdbb2" elif [ "$capacity" -ge 40 ]; then color="#fabd2f" -elif [ "$capacity" -ge 20 ]; then +elif [ "$capacity" -ge 10 ]; then color="#fe8019" else color="#fb4934" |