fix swaybar

master
Alex Hubbard 2023-04-18 21:15:31 -05:00
parent 6c232a9609
commit 50f6b832c6
1 changed files with 4 additions and 2 deletions

View File

@ -22,6 +22,8 @@ MAIL_DIR="$HOME/.local/share/mail"
SEP=" | " SEP=" | "
BATTERY_DEV="$(ls /sys/class/power_supply | grep -v AC)"
ddate () { ddate () {
printf " %s\n" "$(date "+%b %d, %Y ( %I:%M )")" #(%a) printf " %s\n" "$(date "+%b %d, %Y ( %I:%M )")" #(%a)
} }
@ -100,7 +102,7 @@ cputemp() {
battery() { battery() {
#BATT_DIR="/sys/class/power_supply/BAT0" #BATT_DIR="/sys/class/power_supply/BAT0"
BATT_DIR="/sys/class/power_supply/cw2015-battery" BATT_DIR="/sys/class/power_supply/$BATTERY_DEV"
if [ -d "$BATT_DIR" ]; then if [ -d "$BATT_DIR" ]; then
status="$(cat "$BATT_DIR"/status)" status="$(cat "$BATT_DIR"/status)"
charge="$(cat "$BATT_DIR"/capacity)" charge="$(cat "$BATT_DIR"/capacity)"
@ -123,7 +125,7 @@ crypto() {
} }
update() { update() {
echo " $SEP$(battery)$SEP$(netup)$SEP$(audio)$SEP$(rss)$SEP$(weather)$SEP$(ddate) " echo " $SEP$(battery)$SEP$(cputemp)$SEP$(netup)$SEP$(audio)$SEP$(rss)$SEP$(weather)$SEP$(ddate) "
} }