From 2a081d6e5e39887dc6b051fdcddfc9cb39aa856f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Mon, 30 Mar 2020 18:49:01 +0200 Subject: [PATCH] battery: remove printf usage where possible Spares us of the need to quote % symbols --- plugins/battery/battery.plugin.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/battery/battery.plugin.zsh b/plugins/battery/battery.plugin.zsh index f84793b7d..99dee656b 100644 --- a/plugins/battery/battery.plugin.zsh +++ b/plugins/battery/battery.plugin.zsh @@ -175,7 +175,7 @@ function battery_level_gauge() { local filled_symbol=${BATTERY_GAUGE_FILLED_SYMBOL:-'▶'} local empty_symbol=${BATTERY_GAUGE_EMPTY_SYMBOL:-'▷'} local charging_color=${BATTERY_CHARGING_COLOR:-$color_yellow} - local charging_symbol=${BATTERY_CHARGING_SYMBOL:-'%%{%%G⚡%%}'} + local charging_symbol=${BATTERY_CHARGING_SYMBOL:-'%{%G⚡%}'} local battery_remaining_percentage=$(battery_pct) local filled empty gauge_color @@ -201,11 +201,11 @@ function battery_level_gauge() { battery_is_charging && charging=$charging_symbol # Charging status and prefix - printf ${charging_color//\%/\%\%}$charging${color_reset//\%/\%\%}${battery_prefix//\%/\%\%}${gauge_color//\%/\%\%} + print -n ${charging_color}${charging}${color_reset}${battery_prefix}${gauge_color} # Filled slots [[ $filled -gt 0 ]] && printf ${filled_symbol//\%/\%\%}'%.0s' {1..$filled} # Empty slots [[ $filled -lt $gauge_slots ]] && printf ${empty_symbol//\%/\%\%}'%.0s' {1..$empty} # Suffix - printf ${color_reset//\%/\%\%}${battery_suffix//\%/\%\%}${color_reset//\%/\%\%} + print -n ${color_reset}${battery_suffix}${color_reset} }