From 58cbde4ce462d75bea1d6e664a2933fe55f172dd Mon Sep 17 00:00:00 2001 From: Thomas Naderer Date: Sat, 21 Feb 2026 22:13:10 +0100 Subject: [PATCH] tmux: make status toggle silent (no popup message) --- tmux/tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 7ebec5b..162622f 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -218,7 +218,7 @@ set -g window-active-style "bg=default" # ============================================ # Toggle top status bar on/off (Prefix + b) -bind b if -F "#{==:#{status},on}" "set -g status off ; display-message 'Status: OFF'" "set -g status on ; display-message 'Status: ON'" +bind b if -F "#{==:#{status},on}" "set -g status off" "set -g status on" # Reload config file with message bind r source-file ~/.config/tmux/tmux.conf \; display-message "󰑓 Config reloaded!"