James Sparenberg <[EMAIL PROTECTED]> writes: > I can't use the ACPI package as this laptop doesn't support it. I have > to use APM and that does work..with the 9.0 version.
as ACPI it should does the switch automatically :
icewm/src/aapm.c 350:
n = scandir("/proc/acpi/battery", &de, 0, alphasort);
if (n > 0) {
//use acpi info
acpiMode = 1;
[...]
else {
//use apm info
acpiMode = 0;
batteryNum = 1;
}
