This commit is contained in:
cronyakatsuki 2022-03-21 18:05:05 +01:00
parent 5fe9ae3c00
commit 19ee4a7871
10 changed files with 152 additions and 25 deletions

View file

@ -7,5 +7,5 @@ case "$(printf "mpv\\nbrowser\\ncopy url\\nw3m" | dmenu -p "Open link with what
mpv) "$VIDEO" "$1" ;;
browser) "$BROWSER" "$1" > /dev/null;;
"copy url") echo "$1" | xclip -selection clipboard ;;
w3m) w3m "$1";;
w3m) readable "$1" | w3m -T text/html ;;
esac