From b55bfe94b54da58bfa0b12331def522d7719c002 Mon Sep 17 00:00:00 2001 From: ben Date: Sun, 15 Feb 2026 15:02:57 +0800 Subject: [PATCH 1/2] feat: update tmux status bar colors for improved visibility and user experience --- tmux.conf | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tmux.conf b/tmux.conf index 8303203..bbae322 100644 --- a/tmux.conf +++ b/tmux.conf @@ -59,19 +59,21 @@ set -g @catppuccin_pane_status_enabled "off" set -g @catppuccin_pane_border_status "off" # status left look and feel +# Session name highlights teal when prefix (Ctrl-a) is active set -g status-left-length 100 set -g status-left "" -set -ga status-left "#{?client_prefix,#{#[bg=#{@thm_red},fg=#{@thm_bg},bold] 🍱 #S },#{#[bg=#{@thm_bg},fg=#{@thm_green}] 🍱 #S }}" +set -ga status-left "#{?client_prefix,#{#[bg=#{@thm_teal},fg=#{@thm_bg},bold] 🍱 #S },#{#[bg=#{@thm_bg},fg=#{@thm_green}] 🍱 #S }}" set -ga status-left "#[bg=#{@thm_bg},fg=#{@thm_overlay_0},none]│" set -ga status-left "#[bg=#{@thm_bg},fg=#{@thm_blue}]  #{=/-32/...:#{s|$USER|~|:#{b:pane_current_path}}} " set -ga status-left "#[bg=#{@thm_bg},fg=#{@thm_overlay_0},none]#{?window_zoomed_flag,│,}" set -ga status-left "#[bg=#{@thm_bg},fg=#{@thm_yellow}]#{?window_zoomed_flag,  zoom ,}" # status right look and feel +# PREFIX badge appears when prefix (Ctrl-a) is active set -g status-right-length 100 set -g status-right "" -set -ga status-right "#{?client_prefix,#[bg=red fg=white bold] PREFIX ,}" -set -ga status-right "#[bg=#{@thm_bg},fg=#{@thm_blue}] 󰭦 %Y-%m-%d 󰅐 %H:%M " +set -ga status-right "#{?client_prefix,#{#[bg=#{@thm_teal},fg=#{@thm_bg},bold] PREFIX },}" +set -ga status-right "󰭦 %Y-%m-%d 󰅐 %H:%M " # Configure Tmux set -g status-position top From dd28f1fd54a0d20deb05adaf24ee764ca9741268 Mon Sep 17 00:00:00 2001 From: ben Date: Sun, 15 Feb 2026 15:14:23 +0800 Subject: [PATCH 2/2] feat: add timestamp to right prompt for improved command tracking --- zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zshrc b/zshrc index f76daf7..f9751b8 100644 --- a/zshrc +++ b/zshrc @@ -29,6 +29,9 @@ ZSH_COMPDUMP="${ZDOTDIR:-$HOME}/.zcompdump" source $ZSH/oh-my-zsh.sh +# Timestamp in right prompt (date + time for every command) +RPROMPT='%{$fg[white]%}%D{%Y-%m-%d %H:%M}%{$reset_color%}' + # ============================================================================= # Aliases - Directory Navigation # =============================================================================