diff options
author | clsr <clsr@clsr.net> | 2021-11-02 17:27:19 +0000 |
---|---|---|
committer | clsr <clsr@clsr.net> | 2021-11-02 17:27:19 +0000 |
commit | 5eb8887e94952341d342bf3f7dfed9cd0edb5af9 (patch) | |
tree | 2c599a5e5496483ea637b131cc8495a3faa21bbe /config.mk | |
parent | 7a57020d7c67bb5afb800a19d73082bb74429d92 (diff) | |
download | dwmclock-pkgbuild-5eb8887e94952341d342bf3f7dfed9cd0edb5af9.tar.gz dwmclock-pkgbuild-5eb8887e94952341d342bf3f7dfed9cd0edb5af9.zip |
Update to v1.5.0v1.5.0
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -3,19 +3,25 @@ # enable battery charge display CFLAGS += -DBATTERY +# the string to match when the battery is charging; comment out to disable charging detection +CFLAGS += -DCHARGING=\"Charging\\n\" + +# enable battery power usage display; needs POWER_NOW or CURRENT_NOW+VOLTAGE_NOW +#CFLAGS += -DPOWER + # 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\" - -# the string to match when the battery is charging; comment out to disable charging detection -CFLAGS += -DCHARGING=\"Charging\\n\" +CFLAGS += -DPOWER_NOW=\"/sys/class/power_supply/BAT0/power_now\" # 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/ADP1/online\" #CFLAGS += -DCHARGING=\"1\\n\" +#CFLAGS += -DCURRENT_NOW=\"/sys/class/power_supply/BAT0/current_now\" +#CFLAGS += -DVOLTAGE_NOW=\"/sys/class/power_supply/BAT0/voltage_now\" # every how many seconds to refresh the battery charge display CFLAGS += -DBAT_REFRESH_SECONDS=10 |