minor cleanup

This commit is contained in:
jasper 2012-10-08 11:26:48 +00:00
parent 79a9f13d39
commit 7e16e25ea6
2 changed files with 6 additions and 6 deletions

View File

@ -1,11 +1,11 @@
# $OpenBSD: Makefile,v 1.13 2012/10/08 11:12:53 jasper Exp $
# $OpenBSD: Makefile,v 1.14 2012/10/08 11:26:48 jasper Exp $
ONLY_FOR_ARCHS= ${APM_ARCHS}
COMMENT= generate a statusbar for use with i3/xmobar/dzen2
DISTNAME= i3status-2.6
REVISION= 4
REVISION= 5
CATEGORIES= x11 sysutils
HOMEPAGE= http://i3wm.org/i3status/

View File

@ -1,17 +1,17 @@
$OpenBSD: patch-src_print_battery_info_c,v 1.6 2012/10/08 11:12:54 jasper Exp $
$OpenBSD: patch-src_print_battery_info_c,v 1.7 2012/10/08 11:26:48 jasper Exp $
- fix the battery status printing in %status.
- fix remaining time when we're charging.
- use colors to indicate battery status
--- src/print_battery_info.c.orig Wed Oct 3 13:44:44 2012
+++ src/print_battery_info.c Mon Oct 8 15:09:53 2012
+++ src/print_battery_info.c Mon Oct 8 15:23:17 2012
@@ -228,7 +228,7 @@ void print_battery_info(yajl_gen json_gen, char *buffe
* probing acpi(4) devices.
*/
struct apm_power_info apm_info;
- int apm_fd, ac_status, charging;
+ int apm_fd, charging, seconds_remaining;
+ int apm_fd;
apm_fd = open("/dev/apm", O_RDONLY);
if (apm_fd < 0) {
@ -42,7 +42,7 @@ $OpenBSD: patch-src_print_battery_info_c,v 1.6 2012/10/08 11:12:54 jasper Exp $
+ START_COLOR("color_bad");
+ colorful_output = true;
+ } else if (strncmp(threshold_type, "time", strlen(threshold_type)) == 0
+ && apm_info.minutes_left < low_threshold) {
+ && apm_info.minutes_left < (u_int) low_threshold) {
+ START_COLOR("color_bad");
+ colorful_output = true;
+ }