
CPU module Requirements This module depends on [`tmux-cpu`](https://github.com/tmux-plugins/tmux-cpu). Install The prefered way to install tmux-cpu is using [TPM](https://github.com/tmux-plugins/tpm). Configure Load tmux-cpu after you load catppuccin. set -g @plugin 'catppuccin/tmux' ... set -g @plugin 'tmux-plugins/tmux-cpu' Add the cpu module to the status modules list. set -g @catppuccin_status_modules" "... cpu ..."
14 lines
612 B
Bash
14 lines
612 B
Bash
show_cpu() {
|
|
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
|
|
|
|
local index=$1
|
|
local icon=$(get_tmux_option "@catppuccin_cpu_icon" "")
|
|
local color="$(get_tmux_option "@catppuccin_cpu_color" "#{cpu_bg_color}")"
|
|
local text="$(get_tmux_option "@catppuccin_cpu_text" "#{cpu_percentage}")"
|
|
|
|
local module=$( build_status_module "$index" "$icon" "$color" "$text" )
|
|
|
|
echo "$module"
|
|
}
|