tmux-catppuccin-coal/status/cpu.sh
2024-08-06 13:25:59 +00:00

16 lines
624 B
Bash

show_cpu() {
local index icon color text module
index=$1
icon=$(get_tmux_option "@catppuccin_cpu_icon" "")
color="$(get_tmux_option "@catppuccin_cpu_color" "#{cpu_bg_color}")"
text="$(get_tmux_option "@catppuccin_cpu_text" "#{cpu_percentage}")"
tmux set-option -g @cpu_low_bg_color "$thm_yellow" # background color when cpu is low
tmux set-option -g @cpu_medium_bg_color "$thm_orange" # background color when cpu is medium
tmux set-option -g @cpu_high_bg_color "$thm_red" # background color when cpu is high
module=$(build_status_module "$index" "$icon" "$color" "$text")
echo "$module"
}