
* feat: batch tmux show options * dont check for duplicates * fix: status modules * batch and cache build_window_icon * perf: batch new options * chore: tmux_batch_setup_module -> tmux_batch_setup_status_module
30 lines
1.5 KiB
Bash
30 lines
1.5 KiB
Bash
show_battery() {
|
|
local index icon color text module
|
|
|
|
tmux_batch_setup_status_module "battery"
|
|
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_charge_tier8 ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_charge_tier7 ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_charge_tier6 ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_charge_tier5 ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_charge_tier4 ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_charge_tier3 ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_charge_tier2 ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_charge_tier1 ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_status_charged ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_status_charging ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_status_discharging ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_status_unknown ;")
|
|
tmux_batch_options_commands+=("set-option -gq @batt_icon_status_attached ;")
|
|
|
|
run_tmux_batch_commands
|
|
|
|
index=$1
|
|
icon=$(get_tmux_batch_option "@catppuccin_battery_icon" "#{battery_icon}")
|
|
color=$(get_tmux_batch_option "@catppuccin_battery_color" "$thm_yellow")
|
|
text=$(get_tmux_batch_option "@catppuccin_battery_text" "#{battery_percentage}")
|
|
|
|
module=$(build_status_module "$index" "$icon" "$color" "$text")
|
|
|
|
echo "$module"
|
|
}
|