From 7208fc8363a95d4af5560d434a6a6f9a1d667727 Mon Sep 17 00:00:00 2001 From: Roger Steve Ruiz Date: Wed, 23 Nov 2022 14:10:27 -0500 Subject: [PATCH] Adding option to enable window_tabs; This option, for now, defaults to false. This is just so it keeps the initial design intention for the original design of the plugin. I may flip it or change the name of the variable in future commits. This patch is addressing catppuccin/tmux#16. Co-Authored-By: Robert Menke --- catppuccin.tmux | 2 ++ 1 file changed, 2 insertions(+) diff --git a/catppuccin.tmux b/catppuccin.tmux index 928321f..ee2342c 100755 --- a/catppuccin.tmux +++ b/catppuccin.tmux @@ -16,7 +16,9 @@ get-tmux-option() { main() { local theme + local window_tabs_enabled theme="$(get-tmux-option "@catppuccin_flavour" "mocha")" + window_tabs_enabled="$(get-tmux-option "@catppuccin_window_tabs_enabled" "false")" tmux run -b "$CURRENT_DIR/catppuccin-${theme}.tmuxtheme" }