]> git.armaanb.net Git - dwmblocks.git/commitdiff
Merge pull request #15 from tomboehmer/issue9
authortorrinfail <torrinfail@gmail.com>
Wed, 12 Aug 2020 03:04:51 +0000 (20:04 -0700)
committerGitHub <noreply@github.com>
Wed, 12 Aug 2020 03:04:51 +0000 (20:04 -0700)
Fixes #9 - determine the size of the status buffer based on the number of blocks

.gitignore
Makefile
README.md
blocks.def.h [new file with mode: 0644]
blocks.h [deleted file]
dwmblocks.c

index c4bb9708b2b07e18d203ac705fc4ae1c689a8806..b6605b413074a4a711c2e4bcdb0a109412d50434 100644 (file)
@@ -1,3 +1,6 @@
+# Custom blocks file
+blocks.h
+
 # Prerequisites
 *.d
 
index c45a56304b928a426a4e50892cda3d56b5b61c4a..bad5ddd20aa7b0ba1bb183f47f9210145ba3b351 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,11 @@
 PREFIX ?= /usr/local
 
-output: dwmblocks.c blocks.h
+output: dwmblocks.c blocks.def.h blocks.h
        cc `pkg-config --cflags x11` `pkg-config --libs x11` dwmblocks.c -o dwmblocks
+blocks.h:
+       cp blocks.def.h $@
+
+
 clean:
        rm -f *.o *.gch dwmblocks
 install: output
index fe02a0c55234fb6125d28d1713ff9f2256b8f8c4..af7d033b2cf51d44cf4b1ba0946297d2e22170f7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,10 @@
 # dwmblocks
 Modular status bar for dwm written in c.
+# usage
+To use dwmblocks first run 'make' and then install it with 'sudo make install'.
+After that you can put dwmblocks in your xinitrc or other startup script to have it start with dwm.
 # modifying blocks
 The statusbar is made from text output from commandline programs.
 Blocks are added and removed by editing the blocks.h header file.
+By default the blocks.h header file is created the first time you run make which copies the default config from blocks.def.h.
+This is so you can edit your status bar commands and they will not get overwritten in a future update.
diff --git a/blocks.def.h b/blocks.def.h
new file mode 100644 (file)
index 0000000..35738db
--- /dev/null
@@ -0,0 +1,10 @@
+//Modify this file to change what commands output to your statusbar, and recompile using the make command.
+static const Block blocks[] = {
+       /*Icon*/        /*Command*/             /*Update Interval*/     /*Update Signal*/
+       {"Mem:", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g",     30,             0},
+
+       {"", "date '+%b %d (%a) %I:%M%p'",                                      5,              0},
+};
+
+//sets delimeter between status commands. NULL character ('\0') means no delimeter.
+static char delim = '|';
diff --git a/blocks.h b/blocks.h
deleted file mode 100644 (file)
index 31e98af..0000000
--- a/blocks.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//Modify this file to change what commands output to your statusbar, and recompile using the make command.
-static const Block blocks[] = {
-       /*Icon*/        /*Command*/             /*Update Interval*/     /*Update Signal*/
-       {"", "cat ~/.pacupdate | sed /📦0/d",                                 0,              9},
-       
-       {"🧠", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g",     30,             0},
-
-       {"", "~/bin/statusbar/volume",                                          0,              10},
-
-       {"☀", "xbacklight | sed 's/\\..*//'",                                 0,              11},
-       
-       {"", "~/bin/statusbar/battery",                                         5,              0},
-
-       {"🌡", "sensors | awk '/^temp1:/{print $2}'",                         5,              0},
-
-       {"", "~/bin/statusbar/clock",                                           5,              0},
-};
-
-//sets delimeter between status commands. NULL character ('\0') means no delimeter.
-static char delim = '|';
index 3af799f751cedaf21970f46ac2456bcb05f0e484..21c14825f9ddc595d49481701899a79e1d732b8c 100644 (file)
@@ -14,6 +14,7 @@ typedef struct {
        unsigned int interval;
        unsigned int signal;
 } Block;
+void dummysighandler(int num);
 void sighandler(int num);
 void getcmds(int time);
 #ifndef __OpenBSD__
@@ -59,7 +60,7 @@ void getcmds(int time)
 {
        const Block* current;
        for(int i = 0; i < LENGTH(blocks); i++)
-       {       
+       {
                current = blocks + i;
                if ((current->interval != 0 && time % current->interval == 0) || time == -1)
                        getcmd(current,statusbar[i]);
@@ -80,8 +81,12 @@ void getsigcmds(int signal)
 
 void setupsignals()
 {
+    /* initialize all real time signals with dummy handler */
+    for(int i = SIGRTMIN; i <= SIGRTMAX; i++)
+        signal(i, dummysighandler);
+
        for(int i = 0; i < LENGTH(blocks); i++)
-       {         
+       {
                if (blocks[i].signal > 0)
                        signal(SIGRTMIN+blocks[i].signal, sighandler);
        }
@@ -138,6 +143,14 @@ void statusloop()
        }
 }
 
+#ifndef __OpenBSD__
+/* this signal handler should do nothing */
+void dummysighandler(int signum)
+{
+    return;
+}
+#endif
+
 #ifndef __OpenBSD__
 void sighandler(int signum)
 {
@@ -155,7 +168,7 @@ void termhandler(int signum)
 int main(int argc, char** argv)
 {
        for(int i = 0; i < argc; i++)
-       {       
+       {
                if (!strcmp("-d",argv[i]))
                        delim = argv[++i][0];
                else if(!strcmp("-p",argv[i]))