mirror of
https://github.com/hydroxycarbamide/dotfiles.git
synced 2025-05-04 20:09:08 -04:00
10 lines
323 B
Bash
10 lines
323 B
Bash
show_host() {
|
|
local index=$1
|
|
local icon=$(get_tmux_option "@catppuccin_host_icon" "")
|
|
local color=$(get_tmux_option "@catppuccin_host_color" "$thm_magenta")
|
|
local text=$(get_tmux_option "@catppuccin_host_text" "#H")
|
|
|
|
local module=$( build_status_module "$index" "$icon" "$color" "$text" )
|
|
|
|
echo "$module"
|
|
}
|