oh my days

This commit is contained in:
Sakooooo 2023-09-12 10:32:17 +04:00
parent da4d0e2f40
commit 674338d6f1
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -7,7 +7,7 @@ battery() {
get_status="$(cat /sys/class/power_supply/BAT1/status)" get_status="$(cat /sys/class/power_supply/BAT1/status)"
case "$get_status" in case "$get_status" in
Charging) printf "^c$blue^ 󰂄 $get_capacity" ;; Charging) printf "^c$blue^ 󰂄 $get_capacity" ;;
Discharging) printf "^c$white^ ^b$blue 󰁹 $get_capacity" ;; Discharging) printf "^b$blue 󰁹 $get_capacity" ;;
esac esac
} }