commit ec01a84698346cca0b3d4e06202101982cda7de0
Author: Christoph Lohmann <[email protected]>
AuthorDate: Thu Jul 25 13:16:11 2024 +0200
Commit: Christoph Lohmann <[email protected]>
CommitDate: Thu Jul 25 13:16:11 2024 +0200
Add meme-status to example.
Everyone should have a status of his/her memes.
diff --git a/dwmstatus.c b/dwmstatus.c
index 1b53292..7b09973 100644
--- a/dwmstatus.c
+++ b/dwmstatus.c
@@ -211,6 +211,7 @@ main(void)
char *t1;
char *kbmap;
char *surfs;
+ char *memes;
if (!(dpy = XOpenDisplay(NULL))) {
fprintf(stderr, "dwmstatus: cannot open display.\n");
@@ -225,15 +226,17 @@ main(void)
tmbln = mktimes("KW %W %a %d %b %H:%M %Z %Y", tzberlin);
kbmap = execscript("setxkbmap -query | grep layout | cut -d':'
-f 2- | tr -d ' '");
surfs = execscript("surf-status");
+ memes = execscript("meme-status");
t0 =
gettemperature("/sys/devices/virtual/thermal/thermal_zone0", "temp");
t1 =
gettemperature("/sys/devices/virtual/thermal/thermal_zone1", "temp");
- status = smprintf("S:%s K:%s T:%s|%s L:%s B:%s A:%s U:%s %s",
- surfs, kbmap, t0, t1, avgs, bat, tmar, tmutc,
+ status = smprintf("S:%s M:%s K:%s T:%s|%s L:%s B:%s A:%s U:%s
%s",
+ surfs, memes, kbmap, t0, t1, avgs, bat, tmar,
tmutc,
tmbln);
setstatus(status);
free(surfs);
+ free(memes);
free(kbmap);
free(t0);
free(t1);