Goodbye rofi.

This commit is contained in:
Bartek Stalewski 2021-08-23 22:08:50 +02:00
parent 4cf6a6510b
commit d4de9ab67f

View File

@ -12,7 +12,7 @@ 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" | rofi -dmenu -i -p 'Open url' -l 10)"
o) chosen="$(echo "$urls" | dmenu -l 20 -i -p 'Open url')"
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 ;;
*) printf "Invalid option: -%s\\n" "$OPTARG" && exit 1 ;;