10 lines
326 B
Bash
10 lines
326 B
Bash
show_host() {
|
|
local index=$1
|
|
local icon="$(get_tmux_option "@catppuccin_host_icon" "")"
|
|
local color="$(get_tmux_option "@catppuccin_host_color" "$thm_blue")"
|
|
local text="$(get_tmux_option "@catppuccin_host_text" "#H")"
|
|
|
|
local module=$( build_status_module "$index" "$icon" "$color" "$text" )
|
|
|
|
echo $module
|
|
}
|