st/scripts/st_urllist

15 lines
325 B
Plaintext
Raw Normal View History

2022-09-02 15:11:13 +02:00
#!/bin/sh
case "$RUNLAUNCHER" in
"") RUNLAUNCHER=dmenu ;;
esac
command -v xdg-open > /dev/null && BROWSER="xdg-open"
URL=$(st_xurls | grep http | awk '!_[$1]++' | $RUNLAUNCHER -l 10 -w $WINDOWID -g 1 -p 'Open:')
case "$1" in
"") $BROWSER $URL ;;
"-o") $BROWSER $URL ;;
"-c") echo $URL | xclip -selection clipboard ;;
esac