From f7f332a1fcb53c748f90b5ccf278ab0e5e8eeacc Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 9 Jun 2026 22:07:19 +0300 Subject: tmux.rocky.conf: add drastic color scheme (bright green status, red borders, ROCKY label) --- tmux/tmux.rocky.conf | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/tmux/tmux.rocky.conf b/tmux/tmux.rocky.conf index 5bc22db..2681c8c 100644 --- a/tmux/tmux.rocky.conf +++ b/tmux/tmux.rocky.conf @@ -1,11 +1,29 @@ # Rocky VM tmux overrides # Use C-g as prefix (nested tmux: earth outer=C-b, rocky inner=C-g) -# Remove default C-b prefix +# ── Prefix ────────────────────────────────────────────────────────────── unbind C-b - -# Set new prefix to C-g set -g prefix C-g - -# Send C-g through when double-tapped (like C-b b on default) bind C-g send-prefix + +# ── Drastic color scheme so you know you're inside the ROCKY tmux ──────── +# Earth (outer) = magenta active border + white-on-purple status +# Rocky (inner) = bright red active border + black-on-bright-green status + +set -g pane-active-border-style 'fg=brightred,bold' +set -g pane-border-style 'fg=colour8' + +set -g status-style 'bg=brightgreen,fg=black,bold' +set -g status-left ' [ROCKY] #[bg=black,fg=brightgreen] #S #[default] ' +set -g status-left-length 30 + +set -g window-status-current-style 'bg=black,fg=brightgreen,bold' +set -g window-status-style 'bg=brightgreen,fg=black' + +# Disable hexai status theme on rocky (not installed / not relevant) +set -g status-right '#[fg=colour8]| %H:%M ' +set -g status-right-length 30 + +# ── Visual bell ───────────────────────────────────────────────────────── +set -g visual-bell off +set -g bell-action any -- cgit v1.2.3 From 2fdd97ab10f7fa88f1fa840d0640373b122bcc7b Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 9 Jun 2026 22:09:38 +0300 Subject: tmux.rocky.conf: switch to red/orange color scheme --- tmux/tmux.rocky.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tmux/tmux.rocky.conf b/tmux/tmux.rocky.conf index 2681c8c..8723d3c 100644 --- a/tmux/tmux.rocky.conf +++ b/tmux/tmux.rocky.conf @@ -6,19 +6,19 @@ unbind C-b set -g prefix C-g bind C-g send-prefix -# ── Drastic color scheme so you know you're inside the ROCKY tmux ──────── +# ── Drastic RED/ORANGE color scheme so you know you're inside ROCKY ────── # Earth (outer) = magenta active border + white-on-purple status -# Rocky (inner) = bright red active border + black-on-bright-green status +# Rocky (inner) = bright red border + black-on-orange status set -g pane-active-border-style 'fg=brightred,bold' set -g pane-border-style 'fg=colour8' -set -g status-style 'bg=brightgreen,fg=black,bold' -set -g status-left ' [ROCKY] #[bg=black,fg=brightgreen] #S #[default] ' +set -g status-style 'bg=colour208,fg=black,bold' +set -g status-left ' [ROCKY] #[bg=brightred,fg=white] #S #[default] ' set -g status-left-length 30 -set -g window-status-current-style 'bg=black,fg=brightgreen,bold' -set -g window-status-style 'bg=brightgreen,fg=black' +set -g window-status-current-style 'bg=brightred,fg=white,bold' +set -g window-status-style 'bg=colour208,fg=black' # Disable hexai status theme on rocky (not installed / not relevant) set -g status-right '#[fg=colour8]| %H:%M ' -- cgit v1.2.3 From 6cf31efea77ca75853838ce87d18b1f7e24f8316 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 9 Jun 2026 22:11:15 +0300 Subject: tmux.rocky.conf: add pane indicators in red/orange (display-panes, pane-border-status, window-status format) --- tmux/tmux.rocky.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tmux/tmux.rocky.conf b/tmux/tmux.rocky.conf index 8723d3c..2f909c9 100644 --- a/tmux/tmux.rocky.conf +++ b/tmux/tmux.rocky.conf @@ -19,6 +19,16 @@ set -g status-left-length 30 set -g window-status-current-style 'bg=brightred,fg=white,bold' set -g window-status-style 'bg=colour208,fg=black' +set -g window-status-current-format ' #I*#[bg=brightred,fg=white] #W ' +set -g window-status-format ' #I #[bg=colour208,fg=black] #W ' + +# Pane indicators (prefix+q pane numbers) +set -g display-panes-colour colour208 +set -g display-panes-active-colour brightred + +# Show pane info on borders (tmux 3.1+), colored to match +set -g pane-border-status top +set -g pane-border-format '#[fg=colour208] #{pane_index} #[fg=brightred]#{pane_title} ' # Disable hexai status theme on rocky (not installed / not relevant) set -g status-right '#[fg=colour8]| %H:%M ' -- cgit v1.2.3