Changed mpv bin and added current mod for ryzenadj menu.

This commit is contained in:
CronyAkatsuki 2021-07-06 15:12:27 +02:00
parent 9a3c08dd6d
commit bdfd2aec6d
2 changed files with 16 additions and 8 deletions

View file

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