summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan <torrinfail@gmail.com>2019-11-26 22:43:16 -0700
committerAidan <torrinfail@gmail.com>2019-11-26 22:43:16 -0700
commit1766af7d5e0facb911c664584fc703c5f8f89092 (patch)
tree5c5a6f75816ec5b2c5c6c2fb1790614be0fb61f5
parenta22c6311cc5fcc01c483fa110256f0d18e5d7271 (diff)
downloaddwmblocks-1766af7d5e0facb911c664584fc703c5f8f89092.tar.gz
dwmblocks-1766af7d5e0facb911c664584fc703c5f8f89092.tar.bz2
dwmblocks-1766af7d5e0facb911c664584fc703c5f8f89092.zip
Added -p option for printing to stdout rather then setting the root window for compatibility with other wms.
-rw-r--r--dwmblocks.c30
1 files changed, 26 insertions, 4 deletions
diff --git a/dwmblocks.c b/dwmblocks.c
index 71760aa..3071243 100644
--- a/dwmblocks.c
+++ b/dwmblocks.c
@@ -33,6 +33,10 @@ static Window root;
static char statusbar[LENGTH(blocks)][50] = {0};
static char statusstr[2][256];
static int statusContinue = 1;
+<<<<<<< HEAD
+static void (*writestatus) () = setroot;
+=======
+>>>>>>> 5ff59d4e8ba9c64963d36c8ea51e7a1d644aef48
void replace(char *str, char old, char new)
{
@@ -50,7 +54,6 @@ void getcmd(const Block *block, char *output)
FILE *cmdf = popen(cmd,"r");
if (!cmdf)
return;
- //int N = strlen(output);
char c;
int i = strlen(block->icon);
while((c = fgetc(cmdf)) != EOF)
@@ -96,12 +99,21 @@ void setupsignals()
int getstatus(char *str, char *last)
{
strcpy(last, str);
+<<<<<<< HEAD
+ str[0] = '\0';
+ for(int i = 0; i < LENGTH(blocks); i++)
+=======
int j = 0;
for(int i = 0; i < LENGTH(blocks); j+=strlen(statusbar[i++]))
+>>>>>>> 5ff59d4e8ba9c64963d36c8ea51e7a1d644aef48
{
- strcpy(str + j, statusbar[i]);
+ strcat(str, statusbar[i]);
}
+<<<<<<< HEAD
+ str[strlen(str)-1] = '\0';
+=======
str[--j] = '\0';
+>>>>>>> 5ff59d4e8ba9c64963d36c8ea51e7a1d644aef48
return strcmp(str, last);//0 if they are the same
}
@@ -119,6 +131,14 @@ void setroot()
XCloseDisplay(dpy);
}
+void pstdout()
+{
+ if (!getstatus(statusstr[0], statusstr[1]))//Only write out if text has changed.
+ return;
+ printf("%s\n",statusstr[0]);
+ fflush(stdout);
+}
+
void statusloop()
{
@@ -128,7 +148,7 @@ void statusloop()
while(statusContinue)
{
getcmds(i);
- setroot();
+ writestatus();
sleep(1.0);
i++;
}
@@ -143,7 +163,7 @@ void statusinit()
void sighandler(int signum)
{
getsigcmds(signum-SIGRTMIN);
- setroot();
+ writestatus();
}
void termhandler(int signum)
@@ -158,6 +178,8 @@ int main(int argc, char** argv)
{
if (!strcmp("-d",argv[i]))
delim = argv[++i][0];
+ else if(!strcmp("-p",argv[i]))
+ writestatus = pstdout;
}
signal(SIGTERM, termhandler);
signal(SIGINT, termhandler);
Software created with 💖