tmux: make status toggle silent (no popup message)

This commit is contained in:
Thomas Naderer
2026-02-21 22:13:10 +01:00
parent 650d595824
commit 58cbde4ce4

View File

@@ -218,7 +218,7 @@ set -g window-active-style "bg=default"
# ============================================ # ============================================
# Toggle top status bar on/off (Prefix + b) # 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 # Reload config file with message
bind r source-file ~/.config/tmux/tmux.conf \; display-message "󰑓 Config reloaded!" bind r source-file ~/.config/tmux/tmux.conf \; display-message "󰑓 Config reloaded!"