From 1e626fa76e61d9a72d0672ebcb24b54227d5c67c Mon Sep 17 00:00:00 2001 From: Krzysztof Saczuk Date: Fri, 15 Nov 2024 09:25:17 +0100 Subject: [PATCH] fix(shell): spacing in tmux window text --- modules/shell/tmux.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/shell/tmux.nix b/modules/shell/tmux.nix index eef8458..5b04b90 100644 --- a/modules/shell/tmux.nix +++ b/modules/shell/tmux.nix @@ -20,7 +20,7 @@ in { enable = true; extraConfig = '' set -g @catppuccin_window_default_text "#W" - set -g @catppuccin_window_current_text "#(echo '#{pane_current_path}' | rev | cut -d'/' -f-2 | rev)" + set -g @catppuccin_window_current_text " #(echo '#{pane_current_path}' | rev | cut -d'/' -f-2 | rev)" ''; }; mouse = true;