
* feat(status, window): add option to make overwrite status background color, add option to set the separator between windows * feat(window): update documentation * feat(window): update documentation * feat(refactor): move code out of main and into separated files * Update catppuccin.tmux Co-authored-by: vdbe <44153531+vdbe@users.noreply.github.com> * Update catppuccin.tmux Co-authored-by: vdbe <44153531+vdbe@users.noreply.github.com> --------- Co-authored-by: vdbe <44153531+vdbe@users.noreply.github.com>
68 lines
2.5 KiB
Bash
68 lines
2.5 KiB
Bash
#!/bin/sh
|
|
|
|
build_status_module() {
|
|
local index=$1
|
|
local icon=$2
|
|
local color=$3
|
|
local text=$4
|
|
|
|
if [ "$status_fill" = "icon" ]
|
|
then
|
|
local show_left_separator="#[fg=$color,bg=$thm_gray,nobold,nounderscore,noitalics]$status_left_separator"
|
|
|
|
local show_icon="#[fg=$thm_bg,bg=$color,nobold,nounderscore,noitalics]$icon "
|
|
local show_text="#[fg=$thm_fg,bg=$thm_gray] $text"
|
|
|
|
local show_right_separator="#[fg=$thm_gray,bg=$thm_bg,nobold,nounderscore,noitalics]$status_right_separator"
|
|
|
|
if [ "$status_connect_separator" = "yes" ]
|
|
then
|
|
local show_left_separator="#[fg=$color,bg=$thm_gray,nobold,nounderscore,noitalics]$status_left_separator"
|
|
local show_right_separator="#[fg=$thm_gray,bg=$thm_gray,nobold,nounderscore,noitalics]$status_right_separator"
|
|
|
|
else
|
|
local show_left_separator="#[fg=$color,bg=$thm_bg,nobold,nounderscore,noitalics]$status_left_separator"
|
|
local show_right_separator="#[fg=$thm_gray,bg=$thm_bg,nobold,nounderscore,noitalics]$status_right_separator"
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "$status_fill" = "all" ]
|
|
then
|
|
local show_left_separator="#[fg=$color,bg=$thm_gray,nobold,nounderscore,noitalics]$status_left_separator"
|
|
|
|
local show_icon="#[fg=$thm_bg,bg=$color,nobold,nounderscore,noitalics]$icon "
|
|
local show_text="#[fg=$thm_bg,bg=$color]$text"
|
|
|
|
local show_right_separator="#[fg=$color,bg=$thm_gray,nobold,nounderscore,noitalics]$status_right_separator"
|
|
|
|
if [ "$status_connect_separator" = "yes" ]
|
|
then
|
|
local show_left_separator="#[fg=$color,nobold,nounderscore,noitalics]$status_left_separator"
|
|
local show_right_separator="#[fg=$color,bg=$color,nobold,nounderscore,noitalics]$status_right_separator"
|
|
|
|
else
|
|
local show_left_separator="#[fg=$color,bg=$thm_bg,nobold,nounderscore,noitalics]$status_left_separator"
|
|
local show_right_separator="#[fg=$color,bg=$thm_bg,nobold,nounderscore,noitalics]$status_right_separator"
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ "$status_right_separator_inverse" = "yes" ]
|
|
then
|
|
if [ "$status_connect_separator" = "yes" ]
|
|
then
|
|
local show_right_separator="#[fg=$thm_gray,bg=$color,nobold,nounderscore,noitalics]$status_right_separator"
|
|
else
|
|
local show_right_separator="#[fg=$thm_bg,bg=$color,nobold,nounderscore,noitalics]$status_right_separator"
|
|
fi
|
|
fi
|
|
|
|
if [ $(($index)) -eq 0 ]
|
|
then
|
|
local show_left_separator="#[fg=$color,bg=$thm_bg,nobold,nounderscore,noitalics]$status_left_separator"
|
|
fi
|
|
|
|
echo "$show_left_separator$show_icon$show_text$show_right_separator"
|
|
}
|
|
|