
* Clarify creating a custom module * Fix path Co-authored-by: Hamothy <58985301+sgoudham@users.noreply.github.com> * Fix formatting and mention required plugins * docs: indentation & small tweaks --------- Co-authored-by: Hamothy <58985301+sgoudham@users.noreply.github.com> Co-authored-by: sgoudham <sgoudham@gmail.com>
16 lines
651 B
Bash
16 lines
651 B
Bash
# If this module depends on an external Tmux plugin, say so in a comment.
|
|
# E.g.: Requires https://github.com/aaronpowell/tmux-weather
|
|
|
|
show_test() { # This function name must match the module name!
|
|
local index icon color text module
|
|
|
|
index=$1 # This variable is used internally by the module loader in order to know the position of this module
|
|
icon="$( get_tmux_option "@catppuccin_test_icon" "" )"
|
|
color="$( get_tmux_option "@catppuccin_test_color" "$thm_orange" )"
|
|
text="$( get_tmux_option "@catppuccin_test_text" "hello world" )"
|
|
|
|
module=$( build_status_module "$index" "$icon" "$color" "$text" )
|
|
|
|
echo "$module"
|
|
}
|
|
|