-
When i load tmux after a restart, my bottom bar is not in the center until i reinstall (ctrl b+ shifti). Do you know what is happening here
|
Beta Was this translation helpful? Give feedback.
Answered by
vdbe
Jun 24, 2024
Replies: 1 comment 1 reply
-
You need to set the options before running the plugin with set -g @catppuccin_status_justify "centre"
set -g @catppuccin_status_modules_right "directory meetings date_time"
set -g @catppuccin_status_modules_left "session"
set -g @catppuccin_status_left_separator "█"
set -g @catppuccin_status_right_separator "█"
set -g @catppuccin_pane_left_separator "█"
set -g @catppuccin_pane_right_separator "█"
set -g @catppuccin_pane_middle_separator "█"
set -g @catppuccin_date_time_text "%H:%M"
set -g @catppuccin_pane_active_border_style "fg=#ffdd33"
set -g @catppuccin_window_default_color "#f0f0f0" # text color
set -g @catppuccin_window_default_background "#181819"
set -g @catppuccin_window_current_color "#ffdd33" # text color
set -g @catppuccin_window_current_background "#{thm_bg}"
# Tmux package manager
run '~/.tmux/plugins/tpm/tpm' |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kaykhan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to set the options before running the plugin with
run ... tpm