Consistency of dmenu scripts.
This commit is contained in:
parent
5002db57b2
commit
d5a6cd4596
1 changed files with 2 additions and 2 deletions
|
@ -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
|
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: 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 & ;;
|
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 ;;
|
*) printf "Invalid option: -%s\\n" "$OPTARG" && exit 1 ;;
|
||||||
esac done
|
esac done
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue