From eba2a700b3f661370ab4dfee185e1c87f30c904a Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Tue, 16 Jul 2019 10:17:17 +0100 Subject: [PATCH 1/1] Prevent tmux from hanging by redirecting stdout to /dev/null --- states/tmux/files/tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.45.2