diff options
| author | 2015-08-31 20:22:04 +0200 | |
|---|---|---|
| committer | 2015-08-31 20:22:04 +0200 | |
| commit | 8560ce29a58ce21e27f8688c7f7dbf79013afd3e (patch) | |
| tree | 789c1be9df6b5a3875a3c309be04dc608939a94e /herbstluftwm | |
| parent | e6e4e7dc8351baed4efeed91ed3bf78f3f92d6d7 (diff) | |
| download | dotfiles-8560ce29a58ce21e27f8688c7f7dbf79013afd3e.tar.gz dotfiles-8560ce29a58ce21e27f8688c7f7dbf79013afd3e.tar.bz2 dotfiles-8560ce29a58ce21e27f8688c7f7dbf79013afd3e.zip | |
Fixed volume icon < 33%
Diffstat (limited to 'herbstluftwm')
| -rwxr-xr-x | herbstluftwm/.config/herbstluftwm/panel_indicators.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/herbstluftwm/.config/herbstluftwm/panel_indicators.sh b/herbstluftwm/.config/herbstluftwm/panel_indicators.sh index 14dfdad..6f4bf15 100755 --- a/herbstluftwm/.config/herbstluftwm/panel_indicators.sh +++ b/herbstluftwm/.config/herbstluftwm/panel_indicators.sh | |||
| @@ -47,7 +47,7 @@ volume() | |||
| 47 | vol_status="off" | 47 | vol_status="off" |
| 48 | elif [ $vol -eq 0 ]; then | 48 | elif [ $vol -eq 0 ]; then |
| 49 | vol_status="%{F$acolor_fg}${volume_icon[0]} $vol%%{F-}" | 49 | vol_status="%{F$acolor_fg}${volume_icon[0]} $vol%%{F-}" |
| 50 | elif [$vol -lt 33]; then | 50 | elif [ $vol -lt 33 ]; then |
| 51 | vol_status="%{F$acolor_fg}${volume_icon[1]} $vol%%{F-}" | 51 | vol_status="%{F$acolor_fg}${volume_icon[1]} $vol%%{F-}" |
| 52 | else | 52 | else |
| 53 | vol_status="%{F$acolor_fg}${volume_icon[2]} $vol%%{F-}" | 53 | vol_status="%{F$acolor_fg}${volume_icon[2]} $vol%%{F-}" |
