summaryrefslogtreecommitdiff
path: root/urilaunch
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2020-06-22 10:44:20 -0500
committerepoch <epoch@hacking.allowed.org>2020-06-22 10:44:20 -0500
commitbb7df18fefee862f7aa2697a64b95cab37ac7a3c (patch)
treeee90f3ed3ddfec386e8a534b5e7cd21b1d28cb27 /urilaunch
parentf3e000c87d5b94797dbb94a832878ac16664aba7 (diff)
downloaduritools-bb7df18fefee862f7aa2697a64b95cab37ac7a3c.tar.gz
uritools-bb7df18fefee862f7aa2697a64b95cab37ac7a3c.zip
urilaunch now execs uristart so as to not leave around an extra process just waiting for its child to die
Diffstat (limited to 'urilaunch')
-rwxr-xr-xurilaunch2
1 files changed, 1 insertions, 1 deletions
diff --git a/urilaunch b/urilaunch
index 772cf93..3b8565c 100755
--- a/urilaunch
+++ b/urilaunch
@@ -1,3 +1,3 @@
#!/bin/bash
#uristart.log /should/ already be uniq'd because of uristart's code now, but might as well not rely on it.
-uristart $(cat <(printf "%s\n" $(xclip -o | head -n1)) <(cat ~/.cache/uristart.log | sort | uniq) | dmenu -p url\> | cut '-d ' -f1)
+exec uristart $(cat <(printf "%s\n" $(xclip -o | head -n1)) <(cat ~/.cache/uristart.log | sort | uniq) | dmenu -p url\> | cut '-d ' -f1)