From: Maximilian Friedersdorff Date: Tue, 16 Jul 2019 09:17:17 +0000 (+0100) Subject: Prevent tmux from hanging by redirecting stdout to /dev/null X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=eba2a700b3f661370ab4dfee185e1c87f30c904a;hp=97575a7c523ed6ef66da179424bf9cf866bcb80d;p=max%2Fsaltfiles.git Prevent tmux from hanging by redirecting stdout to /dev/null --- diff --git a/states/tmux/files/tmux.conf b/states/tmux/files/tmux.conf index 82d3cce..3b17d1a 100644 --- a/states/tmux/files/tmux.conf +++ b/states/tmux/files/tmux.conf @@ -43,7 +43,7 @@ set -g allow-rename off #move wayland clipbord into tmux buffer bind C-p run "tmux set-buffer \"$(wl-paste)\"" # move tmux copy buffer into wayland clipboard -bind C-y run "tmux save-buffer - | wl-copy" +bind C-y run "tmux save-buffer - | wl-copy > /dev/null"