From 650d595824a6717b3e5618b4fc4714f8256cebd4 Mon Sep 17 00:00:00 2001 From: Thomas Naderer Date: Sat, 21 Feb 2026 22:12:04 +0100 Subject: [PATCH] tmux: add prefix+b toggle for top status bar --- tmux/tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index e56cd36..7ebec5b 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -217,6 +217,9 @@ set -g window-active-style "bg=default" # RELOAD CONFIG # ============================================ +# 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'" + # Reload config file with message bind r source-file ~/.config/tmux/tmux.conf \; display-message "󰑓 Config reloaded!"