didn't actually remove problem

whoops
This commit is contained in:
Kelly Roberts 2022-09-03 18:21:29 +00:00 committed by GitHub
parent 106b5c345c
commit 46ae4084c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,5 +37,5 @@ for battery in /sys/class/power_supply/BAT?*; do
colortemp="$(xsct | cut -d' ' -f5)" colortemp="$(xsct | cut -d' ' -f5)"
[ "$colortemp" -lt 6500 ] && night=" 🌙" [ "$colortemp" -lt 6500 ] && night=" 🌙"
# Prints the info # Prints the info
printf "%s%s%d%%%s" "$status" "$warn" "$capacity" "$night"; unset warn printf "%s%s%d%%" "$status" "$warn" "$capacity"; unset warn
done && printf "$night" "\\n" done && printf "$night" "\\n"