
* chore: shellcheck-warnings for catppuccin.tmux Command used: `shellcheck catppuccin.tmux -ax -s bash` * shellcheck: fix all warnings Command used: `shellcheck -a catppuccin.tmux $(ls custom/*.sh pane/*.sh status/*.sh window/*.sh)` * shellcheck: update workflow to check warnings * shellcheck: include warnings from sourced files
16 lines
624 B
Bash
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"
|
|
}
|