]> git.armaanb.net Git - dwmblocks.git/commitdiff
added blocks.def.h to act as default blocks file so that changes made in
authorAidan <torrinfail@gmail.com>
Wed, 12 Aug 2020 02:50:11 +0000 (20:50 -0600)
committerAidan <torrinfail@gmail.com>
Wed, 12 Aug 2020 02:50:11 +0000 (20:50 -0600)
the future will not affect csutom blocks.h files.

.gitignore
Makefile
blocks.def.h [new file with mode: 0644]
blocks.h [deleted file]

index c4bb9708b2b07e18d203ac705fc4ae1c689a8806..b6605b413074a4a711c2e4bcdb0a109412d50434 100644 (file)
@@ -1,3 +1,6 @@
+# Custom blocks file
+blocks.h
+
 # Prerequisites
 *.d
 
index ad7e7012124a9d22173ff2c0487a50118f8466fa..bad5ddd20aa7b0ba1bb183f47f9210145ba3b351 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,11 @@
 PREFIX ?= /usr/local
-CC ?= cc
-output: dwmblocks.c blocks.h
-       ${CC} dwmblocks.c `pkg-config --cflags x11` `pkg-config --libs x11` -o dwmblocks
+
+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
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 = '|';