Other Where is i3 battery's path?

Greetings :)
Battery's path in Linux is /sys/class/power_supply/Bat%d/uevent, so where is in FBSD?
 
Last edited:
I found I didn't need the path= statement in /usr/local/etc/i3status.conf. The following works fine for me:
Code:
order += "battery 0"

battery 0 {
   format = "%status %percentage %remaining"
   integer_battery_capacity = true
   low_threshold = 15
   threshold_type = percentage
}
 
Mine looks like this:
Code:
battery 0 {
        format = "%status %percentage %remaining %emptytime" 
        last_full_capacity = true
        integer_battery_capacity = true
        low_threshold = 10
        threshold_type = percentage
        hide_seconds = true
        format_down = " No bat"
        status_unk = " "
        status_chr = " "
        status_bat = " "
        status_full = " "
}
 
Back
Top