summaryrefslogtreecommitdiff
path: root/i3blocks-news.sh
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-05-19 18:51:14 -0400
committerAdam T. Carpenter <atc@53hor.net>2020-05-19 18:51:14 -0400
commitcab073ae08de3da46c6bf7b8c14e53a330b4ed9c (patch)
tree0f05fed3abe5b3b2c1418718c98345a8ad7b837e /i3blocks-news.sh
parent07b492219f65cbd952a5caebeec764b3fd5cd477 (diff)
downloadscripts-cab073ae08de3da46c6bf7b8c14e53a330b4ed9c.tar.xz
scripts-cab073ae08de3da46c6bf7b8c14e53a330b4ed9c.zip
hiding certain blocks when nothing to report
Diffstat (limited to 'i3blocks-news.sh')
-rwxr-xr-xi3blocks-news.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/i3blocks-news.sh b/i3blocks-news.sh
index 9e5e92f..290fb04 100755
--- a/i3blocks-news.sh
+++ b/i3blocks-news.sh
@@ -2,4 +2,5 @@
icon=󰎕
unread=$(newsboat -x print-unread | cut -d' ' -f1)
-[ $unread -gt 0 ] && printf "$icon%s\n" $unread && notify-send "$unread unread article(s)"
+[ $unread -gt 0 ] && printf "%s%s" $icon $unread && notify-send "$unread unread article(s)"
+printf "\n"