diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2022-09-30 17:18:28 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2022-09-30 17:18:28 +0530 |
commit | f12b99bbefaee64575cc390f0b130d036ee7c2d9 (patch) | |
tree | fb59d3633e39da74a2160142b43c89f1f79711c2 /external-pipe_scripts | |
parent | 883ea06b13671349532b997b8352f76bb397f244 (diff) |
Diffstat (limited to 'external-pipe_scripts')
-rwxr-xr-x | external-pipe_scripts/st-urlhandler | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external-pipe_scripts/st-urlhandler b/external-pipe_scripts/st-urlhandler index 0eb4586..7086f2f 100755 --- a/external-pipe_scripts/st-urlhandler +++ b/external-pipe_scripts/st-urlhandler @@ -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" | dmenu -i -p 'Follow which url?' -l 10)" + o) chosen="$(echo "$urls" | dmenu -i -p 'Open which url?' -l 10)" 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 ;; |