mirror of https://github.com/xzeldon/htop.git
Merge branch 'master' of https://github.com/hishamhm/htop
This commit is contained in:
commit
e46488463d
|
@ -6,10 +6,20 @@ in the source distribution for its full text.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "BatteryMeter.h"
|
#include "BatteryMeter.h"
|
||||||
|
#include <sys/sysctl.h>
|
||||||
|
|
||||||
void Battery_getData(double* level, ACPresence* isOnAC) {
|
void Battery_getData(double* level, ACPresence* isOnAC) {
|
||||||
// TODO
|
int life;
|
||||||
|
size_t life_len = sizeof(life);
|
||||||
|
if (sysctlbyname("hw.acpi.battery.life", &life, &life_len, NULL, 0) == -1)
|
||||||
*level = -1;
|
*level = -1;
|
||||||
*isOnAC = AC_ERROR;
|
else
|
||||||
}
|
*level = life;
|
||||||
|
|
||||||
|
int acline;
|
||||||
|
size_t acline_len = sizeof(acline);
|
||||||
|
if (sysctlbyname("hw.acpi.acline", &acline, &acline_len, NULL, 0) == -1)
|
||||||
|
*isOnAC = AC_ERROR;
|
||||||
|
else
|
||||||
|
*isOnAC = acline == 0 ? AC_ABSENT : AC_PRESENT;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue