Commit 3fcbcbfd authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

Improve battery meter support (thanks to Richard W.) Closes #3063541.

parent 5fd1436a
...@@ -234,7 +234,6 @@ static double getProcBatData() { ...@@ -234,7 +234,6 @@ static double getProcBatData() {
return 0; return 0;
double percent = totalFull > 0 ? ((double) totalRemain * 100) / (double) totalFull : 0; double percent = totalFull > 0 ? ((double) totalRemain * 100) / (double) totalFull : 0;
return percent; return percent;
} }
...@@ -270,8 +269,27 @@ static double getSysBatData() { ...@@ -270,8 +269,27 @@ static double getSysBatData() {
return 0; return 0;
} }
totalFull += parseUevent(file, "POWER_SUPPLY_ENERGY_FULL="); if ((totalFull += parseUevent(file, "POWER_SUPPLY_ENERGY_FULL="))) {
totalRemain += parseUevent(file, "POWER_SUPPLY_ENERGY_NOW="); totalRemain += parseUevent(file, "POWER_SUPPLY_ENERGY_NOW=");
} else {
//reset file pointer
if (fseek(file, 0, SEEK_SET) < 0) {
fclose(file);
return 0;
}
}
//Some systems have it as CHARGE instead of ENERGY.
if ((totalFull += parseUevent(file, "POWER_SUPPLY_CHARGE_FULL="))) {
totalRemain += parseUevent(file, "POWER_SUPPLY_CHARGE_NOW=");
} else {
//reset file pointer
if (fseek(file, 0, SEEK_SET) < 0) {
fclose(file);
return 0;
}
}
fclose(file); fclose(file);
} }
...@@ -282,6 +300,7 @@ static double getSysBatData() { ...@@ -282,6 +300,7 @@ static double getSysBatData() {
static void BatteryMeter_setValues(Meter * this, char *buffer, int len) { static void BatteryMeter_setValues(Meter * this, char *buffer, int len) {
double percent = getProcBatData(); double percent = getProcBatData();
if (percent == 0) { if (percent == 0) {
percent = getSysBatData(); percent = getSysBatData();
if (percent == 0) { if (percent == 0) {
......
...@@ -20,6 +20,8 @@ What's new in version 0.9 ...@@ -20,6 +20,8 @@ What's new in version 0.9
(thanks to Pavol Rusnak) (thanks to Pavol Rusnak)
* Add Bash/emacs style navigation keys * Add Bash/emacs style navigation keys
(thanks to Daniel Schuler) (thanks to Daniel Schuler)
* Improve battery meter support
(thanks to Richard W.)
* Fix IO-wait color in "Black on White" scheme * Fix IO-wait color in "Black on White" scheme
What's new in version 0.8.3 What's new in version 0.8.3
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment