dmenu-scripts/dmenulinkhandler

12 lines
350 B
Plaintext
Raw Normal View History

2021-03-13 18:09:41 +01:00
#!/bin/sh
# Feed this script a link and it will give dmenu
# with some choice of programs to open the link with.
2021-03-13 18:09:41 +01:00
case "$(printf "mpv\\nbrowser\\ncopy url\\nw3m" | dmenu -p "Open link with what program?")" in
mpv) "$VIDEO" "$1" ;;
2021-03-13 18:09:41 +01:00
browser) "$BROWSER" "$1" > /dev/null;;
"copy url") echo "$1" | xclip -selection clipboard ;;
w3m) w3m "$1";;
esac