Consistency of dmenu scripts.
This commit is contained in:
parent
5002db57b2
commit
d5a6cd4596
@ -12,8 +12,8 @@ urls="$(sed 's/.*│//g' | tr -d '\n' | # First remove linebreaks and mutt sideb
|
||||
|
||||
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 ;;
|
||||
o) chosen="$(echo "$urls" | dmenu -l 20 -i -p 'Open url')"
|
||||
o) chosen="$(echo "$urls" | dmenu -l 20 -i -p 'open')"
|
||||
setsid xdg-open "$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' -l 10 | tr -d '\n' | xclip -selection clipboard ;;
|
||||
*) printf "Invalid option: -%s\\n" "$OPTARG" && exit 1 ;;
|
||||
esac done
|
||||
|
Loading…
Reference in New Issue
Block a user