Plumbing through the new variable to theme files;

This is the start of plumbing things through into the theme files, but I
do think that there is a better way here. I'm open to suggestions and
will probably ask for some help in the Discord for Catppuccin.
This commit is contained in:
Roger Steve Ruiz 2022-11-23 14:50:03 -05:00
parent 7208fc8363
commit fb4e08d66c
No known key found for this signature in database
GPG key ID: 68061DBF1C4C0B44
2 changed files with 12 additions and 1 deletions

View file

@ -10,6 +10,8 @@ get-tmux-option() {
if [ -n "$value" ]; then
echo "$value"
else
# README: Set the default option if it's not set originally.
tmux set-option -gq "${option}" "${default}"
echo "$default"
fi
}