diff options
author | epoch <epoch@hacking.allowed.org> | 2020-06-22 10:44:20 -0500 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2020-06-22 10:44:20 -0500 |
commit | bb7df18fefee862f7aa2697a64b95cab37ac7a3c (patch) | |
tree | ee90f3ed3ddfec386e8a534b5e7cd21b1d28cb27 /urilaunch | |
parent | f3e000c87d5b94797dbb94a832878ac16664aba7 (diff) | |
download | uritools-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-x | urilaunch | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |