summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2022-09-30 17:18:28 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2022-09-30 17:18:28 +0530
commitf12b99bbefaee64575cc390f0b130d036ee7c2d9 (patch)
treefb59d3633e39da74a2160142b43c89f1f79711c2
parent883ea06b13671349532b997b8352f76bb397f244 (diff)
external script changesHEADmain
-rwxr-xr-xexternal-pipe_scripts/st-urlhandler2
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 ;;