diff options
| author | luukvbaal <31730729+luukvbaal@users.noreply.github.com> | 2018-11-19 11:08:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-19 11:08:59 +0100 |
| commit | b52886fc6cce9fe9e401bfebe435b38a9284e12a (patch) | |
| tree | 60ca7cf498cafac74138b724d7deb6cafe4ffa6a /.scripts | |
| parent | 2dc8fabaaf785050bcc00159aec5f6ff03390dd2 (diff) | |
| download | eibhear-b52886fc6cce9fe9e401bfebe435b38a9284e12a.tar.gz eibhear-b52886fc6cce9fe9e401bfebe435b38a9284e12a.tar.zst eibhear-b52886fc6cce9fe9e401bfebe435b38a9284e12a.zip | |
typo fix
Prevented statusbar module from not showing when 0 unread items
Diffstat (limited to '.scripts')
| -rwxr-xr-x | .scripts/statusbar/i3news | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.scripts/statusbar/i3news b/.scripts/statusbar/i3news index ef1816c..32542b1 100755 --- a/.scripts/statusbar/i3news +++ b/.scripts/statusbar/i3news @@ -11,4 +11,4 @@ case $BLOCK_BUTTON in - Left click opens newsboat" ;; esac -echo " $(newsboat -x print-unread | awk '{ print $1}' | sed s/^0$//g)$(cat ~/.config/newsboat/.update 2>/dev/null)" +echo "$(newsboat -x print-unread | awk '{ print $1}' | sed s/^0$//g)$(cat ~/.config/newsboat/.update 2>/dev/null)" |
