This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void | |
cards(Monitor *mon) { | |
unsigned int i, n, nw, nh; | |
Client *c; | |
for(n = 0, c = nexttiled(mon->clients); c; c = nexttiled(c->next), n++); | |
if(n == 0) | |
return; | |
nw = mon->ww; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dwm.c b/dwm.c | |
index e5efb6a..a033028 100644 | |
--- a/dwm.c | |
+++ b/dwm.c | |
@@ -189,6 +189,7 @@ static void pop(Client *c); | |
static void propertynotify(XEvent *e); | |
static void quit(const Arg *arg); | |
static Monitor *recttomon(int x, int y, int w, int h); | |
+static void reload(const Arg *arg); | |
static void resize(Client *c, int x, int y, int w, int h, int interact); |