Introduction
Introduction Statistics Contact Development Disclaimer Help
Adapt dwmstatus to 2018. - dwmstatus - A simple dwm status application in C.
git clone git://git.suckless.org/dwmstatus
Log
Files
Refs
LICENSE
---
commit 7bde3c55521fa3d7c7029ad99ec7e88e8c9f301c
parent e0bea395b27a50936a4db59ecb34775067eab4f3
Author: Christoph Lohmann <[email protected]>
Date: Tue, 17 Jul 2018 15:49:45 +0200
Adapt dwmstatus to 2018.
Diffstat:
M dwmstatus.c | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
---
diff --git a/dwmstatus.c b/dwmstatus.c
@@ -185,7 +185,7 @@ main(void)
char *tmar;
char *tmutc;
char *tmbln;
- char *t0, *t1, *t2, *t3;
+ char *t0, *t1, *t2;
if (!(dpy = XOpenDisplay(NULL))) {
fprintf(stderr, "dwmstatus: cannot open display.\n");
@@ -199,20 +199,18 @@ main(void)
tmar = mktimes("%H:%M", tzargentina);
tmutc = mktimes("%H:%M", tzutc);
tmbln = mktimes("KW %W %a %d %b %H:%M %Z %Y", tzberlin);
- t0 = gettemperature("/sys/devices/virtual/hwmon/hwmon1", "temp…
- t1 = gettemperature("/sys/devices/platform/coretemp.0/hwmon/hw…
- t2 = gettemperature("/sys/devices/platform/coretemp.0/hwmon/hw…
- t3 = gettemperature("/sys/devices/platform/coretemp.0/hwmon/hw…
+ t0 = gettemperature("/sys/devices/virtual/hwmon/hwmon0", "temp…
+ t1 = gettemperature("/sys/devices/virtual/hwmon/hwmon2", "temp…
+ t2 = gettemperature("/sys/devices/virtual/hwmon/hwmon4", "temp…
- status = smprintf("T:%s|%s|%s|%s L:%s B:%s|%s A:%s U:%s %s",
- t0, t1, t2, t3, avgs, bat, bat1, tmar, tmutc,
+ status = smprintf("T:%s|%s|%s L:%s B:%s|%s A:%s U:%s %s",
+ t0, t1, t2, avgs, bat, bat1, tmar, tmutc,
tmbln);
setstatus(status);
free(t0);
free(t1);
free(t2);
- free(t3);
free(avgs);
free(bat);
free(bat1);
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.