Dotfiles/bin/.bin/linkhandler
2020-07-29 17:29:00 +01:00

16 lines
353 B
Bash
Executable file

#!/usr/bin/env bash
# A script to open urls
# For example, open images with sxiv
# This is necesary becuase environment variables are lost when calling from newsboat for some reason
url="$1"
browser="${BROWSER:-firefox-developer-edition}"
case "$url" in
*"//invidio.us/"*) open-youtube "$url"; exit 0 ;;
*) $browser "$url"; exit 0 ;;
esac
exit 1