From 1633e431ab983a9593fd0c130a9adab9d16edd5a Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Wed, 29 Jul 2020 17:29:00 +0100 Subject: [PATCH] Stop linkhandeler from notifying --- bin/.bin/linkhandler | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bin/.bin/linkhandler b/bin/.bin/linkhandler index ed82efd7..ca01768e 100755 --- a/bin/.bin/linkhandler +++ b/bin/.bin/linkhandler @@ -5,13 +5,9 @@ # This is necesary becuase environment variables are lost when calling from newsboat for some reason -notify-send "I get here" - url="$1" browser="${BROWSER:-firefox-developer-edition}" -notify-send "Opening" "$url" - case "$url" in *"//invidio.us/"*) open-youtube "$url"; exit 0 ;; *) $browser "$url"; exit 0 ;;