From fed4ea6e9fb9b2ddcfd66830c86908fbae528351 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 26 Nov 2018 14:56:19 -0500 Subject: [PATCH] i3news tweaks, updates on middle click --- .scripts/statusbar/i3news | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.scripts/statusbar/i3news b/.scripts/statusbar/i3news index 32542b1..7a06318 100755 --- a/.scripts/statusbar/i3news +++ b/.scripts/statusbar/i3news @@ -5,10 +5,14 @@ # When clicked, brings up `newsboat`. case $BLOCK_BUTTON in - 1) "$TERMINAL" -e newsboat ;; + 1) setsid "$TERMINAL" -e newsboat ;; + 2) setsid newsup ;; 3) pgrep -x dunst >/dev/null && notify-send "📰 News module: - Shows unread news items -- Left click opens newsboat" ;; +- Shows 🔃 if updating with \`newsup\` +- Left click opens newsboat +- Middle click syncs RSS feeds +Note: Only one instance of newsboat (including updates) may be running at a time." ;; esac echo "$(newsboat -x print-unread | awk '{ print $1}' | sed s/^0$//g)$(cat ~/.config/newsboat/.update 2>/dev/null)"