From 6508783867a3373a6a0e1e90f28f4be4c9df33d9 Mon Sep 17 00:00:00 2001 From: Valentin Uveges Date: Thu, 10 Aug 2023 15:43:17 +0300 Subject: [PATCH] feat(docs): add note to kill tmux server between config reloads in order to clear global vars --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f6f6324..74c0594 100644 --- a/README.md +++ b/README.md @@ -274,6 +274,15 @@ Look into custom/README.md for more details. Any file added to the custom folder will be preserved when updating catppuccin. ## Configuration Examples +Below are provided a few configurations as examples or starting points. + +Note: +When switching bettwen configurations run: +```sh +tmux kill-server +``` +In order to kill the tmux server and clear all global variables. + ### Config 1 ![Default](./assets/config1.png) @@ -288,7 +297,8 @@ set -g @catppuccin_window_default_fill "none" set -g @catppuccin_window_current_fill "all" set -g @catppuccin_status_modules "application session user host date_time" -set -g @catppuccin_status_left_separator "█" +set -g @catppuccin_status_left_separator "█" +set -g @catppuccin_status_right_separator "█" set -g @catppuccin_date_time_text "%Y-%m-%d %H:%M:%S" ```