From f6fb14d6515ce7160e3a9fdc6d8513ef550c9f36 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 4 Feb 2026 02:39:46 +0200 Subject: [PATCH] feat(tmux): configure tmux-suspend with F8 key and visual indicator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enable suspend key (F8) and add @suspend_suspended_options to show a ⏸ indicator in the status bar when session is suspended. --- config/tmux/tmux.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index d26c42c..b5b4b57 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -102,7 +102,11 @@ bind -N "sesh ui" N display-popup -E "sesh ui" # Plugin that lets you suspend local tmux session, # so that you can work with nested remote tmux session painlessly. # https://github.com/MunifTanjim/tmux-suspend -# set -g @suspend_key 'F8' # Default is F12 +set -g @suspend_key 'F8' # Default is F12 +set -g @suspend_suspended_options " \ + status-left-style::bg=brightblack\\,fg=black, \ + status-left:: ⏸ , \ +" # https://github.com/erikw/tmux-dark-notify set -g @dark-notify-theme-path-light "$HOME/.dotfiles/config/tmux/theme-light.conf"