From cedca7b8b843413217b399ea1323c727994237ce Mon Sep 17 00:00:00 2001 From: clsr Date: Thu, 9 Aug 2018 18:18:44 +0200 Subject: Add exact sleep --- config.def.mk | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'config.def.mk') diff --git a/config.def.mk b/config.def.mk index 1860aaf..4265c82 100644 --- a/config.def.mk +++ b/config.def.mk @@ -6,20 +6,26 @@ CFLAGS+=-DBATTERY # set this to the correct path for your current system CFLAGS+=-DENERGY_FULL=\"/sys/class/power_supply/BAT0/energy_full\" CFLAGS+=-DENERGY_NOW=\"/sys/class/power_supply/BAT0/energy_now\" -CFLAGS+=-DSTATUS=\"/sys/class/power_supply/BAT0/status\" +CFLAGS+=-DSTATUS=\"/sys/class/power_supply/ADP1/online\" + # the string to match when the battery is charging; comment out to disable charging detection -CFLAGS+=-DCHARGING=\"Charging\\n\" +CFLAGS+=-DCHARGING=\"1\\n\" # possible alternative on some systems #CFLAGS+=-DENERGY_FULL=\"/sys/class/power_supply/BAT0/charge_full\" #CFLAGS+=-DENERGY_NOW=\"/sys/class/power_supply/BAT0/charge_now\" +#CFLAGS+=-DSTATUS=\"/sys/class/power_supply/BAT0/status\" +#CFLAGS+=-DCHARGING=\"Charging\\n\" # every how many seconds to refresh the battery charge display -CFLAGS+=-DBAT_REFRESH_SECONDS=60 +CFLAGS+=-DBAT_REFRESH_SECONDS=10 # this is here for legacy reasons, ignore it CFLAGS+=-DMUL=1 +# sleep to the start of the next second instead of for 1s +CFLAGS+=-DEXACT_SLEEP + # make settings @@ -33,3 +39,5 @@ LDFLAGS+=$(shell pkg-config --libs x11) # default paths DESTDIR?=/ PREFIX?=/usr/local +#DESTDIR?=~ +#PREFIX?=/local -- cgit