remove double quotes from linkhandler

This commit is contained in:
decantr 2019-07-24 00:41:29 +01:00
parent 0ca35ac152
commit 54171b5b31
No known key found for this signature in database
GPG Key ID: 0439DF0FFBB01323

View File

@ -18,5 +18,5 @@ case "$1" in
setsid tsp curl -LO "$1" >/dev/null 2>&1 & ;;
*)
if [ -f "$1" ]; then "$TERMINAL" -e "$EDITOR $1"
else setsid "$BROWSER" "$1" >/dev/null 2>&1 & fi ;;
else setsid $BROWSER "$1" >/dev/null 2>&1 & fi ;;
esac