diff options
author | William Carroll <wpcarro@gmail.com> | 2019-03-27T18·26+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-03-27T18·26+0000 |
commit | 370f0346dea102b36b65f09678361b1bbd41256d (patch) | |
tree | 176d92b58bdb0b4173f88da2e8999d3f964aebba /configs/shared | |
parent | ac34df23727bec7e0adc24dc2b81a9f01d65d7e0 (diff) |
Augment browse function
The nohup.out file was creating a bunch of noise and polluting my FS. It may have been the correct thing to add, but if it was, I'm unsure why. Removing it for now since it's been bothering me quite a bit.
Diffstat (limited to 'configs/shared')
-rw-r--r-- | configs/shared/zsh/functions.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/shared/zsh/functions.zsh b/configs/shared/zsh/functions.zsh index cb6154a14915..ea12bf313fe8 100644 --- a/configs/shared/zsh/functions.zsh +++ b/configs/shared/zsh/functions.zsh @@ -337,7 +337,7 @@ nix_store() { browse() { # Open a URL in $BROWSER. Friendly for terminal input and output. - nohup "$BROWSER" $@ & + "$BROWSER" $@ & } lh() { |