diff options
author | katherine <shmibs@shmibbles.me> | 2018-09-20 14:28:10 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2018-09-20 14:28:10 -0700 |
commit | 6de4c5780c9ad15cdc53cdac2bfa220df8be1704 (patch) | |
tree | 2f9fb7214132f316c335b235e288e3bff231fd09 /.config/init/funcs | |
parent | 58ffd0ac06d713ee77e0456ae3b175ef96c114fd (diff) | |
download | dotfiles-6de4c5780c9ad15cdc53cdac2bfa220df8be1704.tar.gz |
fix send hang
suddenly started hanging on those xclip commands for whatever reason, so
cut out the /dev/null and it works now for whatever reason, who knows
Diffstat (limited to '.config/init/funcs')
-rwxr-xr-x | .config/init/funcs/send | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/init/funcs/send b/.config/init/funcs/send index f45a6da..db74680 100755 --- a/.config/init/funcs/send +++ b/.config/init/funcs/send @@ -42,6 +42,6 @@ do fi done } | tee \ - >(xclip -i -selection clipboard) \ - >(xclip -i -selection primary) >/dev/null + >(xclip -i -selection primary) \ + | xclip -i -selection clipboard done |