st/scripts/st_urllist
2022-09-02 17:04:36 +02:00

15 lines
325 B
Bash

#!/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