-
Body:Hi everybody 👋 I'm trying to customize my tmux status line using the catppuccin plugin with tpm, specifically to set custom window separators like: set -g @catppuccin_window_left_separator " "
set -g @catppuccin_window_right_separator " "
set -g @catppuccin_window_middle_separator "█ " However, these settings seem to have no effect unless I also set: set -g @catppuccin_window_status_style "custom" When I do that, the settings are finally recognized — but the layout becomes broken: things don't align properly anymore, and the result looks very messy compared to the default What I'm trying to achieve:I'd like to:
My environment:
Repro steps:
Question:Is there a proper way to override just the window separators or just fix my problem? My .tmux.confset -g default-shell /usr/bin/zsh
unbind r
bind r source-file ~/.tmux.conf
set -g prefix C-s
set -g mouse on
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
set-option -g status-position top
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'catppuccin/tmux'
#set -g @catppuccin_window_status_style "custom"
set -g @catppuccin_window_left_separator " "
set -g @catppuccin_window_right_separator " "
set -g @catppuccin_window_middle_separator "█ "
set -g @catppuccin_window_number_position "right"
set -g @catppuccin_window_default_fill "number"
set -g @catppuccin_window_default_text "#W"
set -g @catppuccin_window_current_fill "number"
set -g @catppuccin_window_current_text "#W"
set -g @catppuccin_status_modules_right "directory user host session"
set -g @catppuccin_status_left_separator " "
set -g @catppuccin_status_right_separator " "
set -g @catppuccin_status_right_separator_inverse "no"
set -g @catppuccin_status_fill "icon"
set -g @catppuccin_status_connect_separator "yes"
set -g @catppuccin_directory_text "#{pane_current_path}"
run '~/.tmux/plugins/tpm/tpm' 📸 Screenshots:Without setting With ✅ Expected:I'd like the status bar to look like Config 3 in this repo: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Out of curiosity, how did you create your config? It's using very outdated options |
Beta Was this translation helpful? Give feedback.
For anyone interested my config file now looks like below and works fine.