diff options
| author | mokulus <36231852+mokulus@users.noreply.github.com> | 2020-04-24 14:44:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-24 08:44:48 -0400 |
| commit | 5d59b3927da16f589dfb961e54a86e6f14a480d6 (patch) | |
| tree | 8cf39175f28a9095544a451e173e8cc4dcb49b2b /.local/bin/statusbar/disk | |
| parent | 349668f423542119770d2deb5e815442e4b1fa0d (diff) | |
| download | eibhear-5d59b3927da16f589dfb961e54a86e6f14a480d6.tar.gz eibhear-5d59b3927da16f589dfb961e54a86e6f14a480d6.tar.zst eibhear-5d59b3927da16f589dfb961e54a86e6f14a480d6.zip | |
Fix minor statusbar issues (#597)
* Fix: Remove trailing space from battery
* Unify spacing in disk
* Fix news
Don't display news module when there are no news.
* Use grep -F in pacpackages
* Fix torrent
Remove trailing whitespace *after* replacing newlines.
* Quote sed command
Diffstat (limited to '.local/bin/statusbar/disk')
| -rwxr-xr-x | .local/bin/statusbar/disk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/statusbar/disk b/.local/bin/statusbar/disk index 269eba7..3e3f2e3 100755 --- a/.local/bin/statusbar/disk +++ b/.local/bin/statusbar/disk @@ -16,7 +16,7 @@ esac case "$location" in "/home"* ) icon="🏠" ;; "/mnt"* ) icon="💾" ;; - *) icon="🖥 ";; + *) icon="🖥";; esac printf "%s: %s\n" "$icon" "$(df -h "$location" | awk ' /[0-9]/ {print $3 "/" $2}')" |
