Browse Source

Adapt dwmstatus to 2018.

master
Christoph Lohmann 6 years ago
parent
commit
7bde3c5552
1 changed files with 6 additions and 8 deletions
  1. +6
    -8
      dwmstatus.c

+ 6
- 8
dwmstatus.c View File

@ -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", "temp1_input");
t1 = gettemperature("/sys/devices/platform/coretemp.0/hwmon/hwmon3", "temp1_input");
t2 = gettemperature("/sys/devices/platform/coretemp.0/hwmon/hwmon3", "temp2_input");
t3 = gettemperature("/sys/devices/platform/coretemp.0/hwmon/hwmon3", "temp3_input");
t0 = gettemperature("/sys/devices/virtual/hwmon/hwmon0", "temp1_input");
t1 = gettemperature("/sys/devices/virtual/hwmon/hwmon2", "temp1_input");
t2 = gettemperature("/sys/devices/virtual/hwmon/hwmon4", "temp1_input");
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);


Loading…
Cancel
Save