mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
make use of dmenuhandler script for urls in st
This commit is contained in:
parent
2dc2128fa7
commit
80c6957729
@ -11,9 +11,9 @@ urls="$(sed 's/.*│//g' | tr -d '\n' | # First remove linebreaks and mutt sideb
|
|||||||
[ -z "$urls" ] && exit 1
|
[ -z "$urls" ] && exit 1
|
||||||
|
|
||||||
while getopts "hoc" o; do case "${o}" in
|
while getopts "hoc" o; do case "${o}" in
|
||||||
h) printf "Optional arguments for custom use:\\n -c: copy\\n -o: xdg-open\\n -h: Show this message\\n" && exit 1 ;;
|
h) printf "Optional arguments for custom use:\\n -c: copy\\n -o: dmenuhandler\\n -h: Show this message\\n" && exit 1 ;;
|
||||||
o) chosen="$(echo "$urls" | dmenu -i -p 'Follow which url?' -l 10)"
|
o) chosen="$(echo "$urls" | dmenu -i -p 'Use which url?' -l 10)"
|
||||||
setsid xdg-open "$chosen" >/dev/null 2>&1 & ;;
|
setsid dmenuhandler "$chosen" >/dev/null 2>&1 & ;;
|
||||||
c) echo "$urls" | dmenu -i -p 'Copy which url?' -l 10 | tr -d '\n' | xclip -selection clipboard ;;
|
c) echo "$urls" | dmenu -i -p 'Copy which url?' -l 10 | tr -d '\n' | xclip -selection clipboard ;;
|
||||||
*) printf "Invalid option: -%s\\n" "$OPTARG" && exit 1 ;;
|
*) printf "Invalid option: -%s\\n" "$OPTARG" && exit 1 ;;
|
||||||
esac done
|
esac done
|
||||||
|
Loading…
Reference in New Issue
Block a user