Browse Source

feat: add config

master
Tovi Jaeschke-Rogers 5 days ago
parent
commit
383bbcb75d
1 changed files with 8 additions and 2 deletions
  1. +8
    -2
      dwmblocks.c

+ 8
- 2
dwmblocks.c View File

@ -129,9 +129,15 @@ int getstatus(char *str, char *last)
#ifndef NO_X
void setroot()
{
if (!getstatus(statusstr[0], statusstr[1]))//Only set root if text has changed.
if (!getstatus(statusstr[0], statusstr[1])) //Only set root if text has changed.
return;
XStoreName(dpy, root, statusstr[0]);
size_t len = strlen(statusstr[0]) + 3;
char *formatted_status = malloc(len);
snprintf(formatted_status, len, " %s ", statusstr[0]);
XStoreName(dpy, root, formatted_status);
XFlush(dpy);
}


Loading…
Cancel
Save