mirror of
https://github.com/hydroxycarbamide/dotfiles.git
synced 2025-05-04 20:09:08 -04:00
11 lines
359 B
Bash
11 lines
359 B
Bash
show_date_time() {
|
|
local index=$1
|
|
local icon="$(get_tmux_option "@catppuccin_date_time_icon" "")"
|
|
local color="$(get_tmux_option "@catppuccin_date_time_color" "$thm_blue")"
|
|
local text="$(get_tmux_option "@catppuccin_date_time_text" "%Y-%m-%d %H:%M")"
|
|
|
|
local module=$( build_status_module "$index" "$icon" "$color" "$text" )
|
|
|
|
echo "$module"
|
|
}
|
|
|