From 3107aba71da3fe6c29b3c6799d08ff60d953cf82 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Fri, 4 Aug 2023 22:18:33 +0300 Subject: [PATCH] change icons --- config/dwm/scripts/bar.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/dwm/scripts/bar.sh b/config/dwm/scripts/bar.sh index 5400aaac..b3ed6bc6 100755 --- a/config/dwm/scripts/bar.sh +++ b/config/dwm/scripts/bar.sh @@ -19,11 +19,11 @@ battery() { get_capacity="$(cat /sys/class/power_supply/BAT1/capacity)" get_status="$(cat /sys/class/power_supply/BAT1/status)" case "$get_status" in - Charging) printf "^c$blue^ Charging $get_capacity" ;; + Charging) printf "^c$blue^ 󰂄 $get_capacity" ;; Discharging) if (( $get_capacity <= 20)); then - printf "^c$lightred^ Low! $get_capacity" + printf "^c$lightred^ 󰂃 $get_capacity" else - printf "^c$blue^  $get_capacity" + printf "^c$blue^ 󰁹 $get_capacity" fi ;; esac #printf "^c$blue^  $get_capacity"