mirror of
https://github.com/hydroxycarbamide/dotfiles.git
synced 2025-05-04 20:09:08 -04:00
10 lines
347 B
Bash
10 lines
347 B
Bash
show_application() {
|
|
local index=$1
|
|
local icon=$(get_tmux_option "@catppuccin_application_icon" "")
|
|
local color=$(get_tmux_option "@catppuccin_application_color" "$thm_pink")
|
|
local text=$(get_tmux_option "@catppuccin_application_text" "#W")
|
|
|
|
local module=$( build_status_module "$index" "$icon" "$color" "$text" )
|
|
|
|
echo "$module"
|
|
}
|