From 29a95145c781f0f7f80e6e154a0aef77d2ea0519 Mon Sep 17 00:00:00 2001 From: Emil Toivainen Date: Tue, 9 Jan 2024 15:37:26 +0200 Subject: [PATCH] feat: pane configuration --- catppuccin.tmux | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/catppuccin.tmux b/catppuccin.tmux index 11d4030..7244779 100755 --- a/catppuccin.tmux +++ b/catppuccin.tmux @@ -284,8 +284,10 @@ main() { set message-command-style "fg=${thm_cyan},bg=${thm_gray},align=centre" # panes - set pane-border-style "fg=${thm_gray}" - set pane-active-border-style "fg=${thm_blue}" + local pane_border_style=$(get_tmux_option "@catppuccin_pane_border_style" "fg=${thm_gray}") + local pane_active_border_style=$(get_tmux_option "@catppuccin_pane_active_border_style" "fg=${thm_blue}") + set pane-border-style "${pane_border_style}" + set pane-active-border-style "${pane_active_border_style}" # windows setw window-status-activity-style "fg=${thm_fg},bg=${thm_bg},none"