diff options
| author | Joe <bousset.rudy@gmail.com> | 2022-09-06 09:39:13 +0200 | 
|---|---|---|
| committer | Joe <bousset.rudy@gmail.com> | 2022-09-06 09:39:13 +0200 | 
| commit | 2b1c0170808bb3d4303531420255fcdecda4e4f1 (patch) | |
| tree | 5d08936c52f1e167df751125b54365a5b67b89d5 /.local/bin/status/sb-battery | |
| parent | up (diff) | |
| download | dotfiles-bsd-2b1c0170808bb3d4303531420255fcdecda4e4f1.tar.gz dotfiles-bsd-2b1c0170808bb3d4303531420255fcdecda4e4f1.tar.bz2 dotfiles-bsd-2b1c0170808bb3d4303531420255fcdecda4e4f1.tar.xz dotfiles-bsd-2b1c0170808bb3d4303531420255fcdecda4e4f1.tar.zst dotfiles-bsd-2b1c0170808bb3d4303531420255fcdecda4e4f1.zip | |
up
Diffstat (limited to '')
| -rwxr-xr-x | .local/bin/status/sb-battery | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/.local/bin/status/sb-battery b/.local/bin/status/sb-battery index 49857bc..2110062 100755 --- a/.local/bin/status/sb-battery +++ b/.local/bin/status/sb-battery @@ -5,9 +5,10 @@ status=$(apm -b)  [ "$status" -eq 3 ] && echo "ﮣ "  case $(echo $(apm -l) / 20 | bc) in -	"0") printf "";; +	"0") printf " ";;  	"1") printf " ";;  	"2") printf " ";;  	"3") printf " ";;  	"4") printf " ";; +	"5") printf "ﮣ ";;  esac | 
