|
|
@ -148,6 +148,7 @@ static void arrange(Monitor *m); |
|
|
|
static void arrangemon(Monitor *m); |
|
|
|
static void arrangemon(Monitor *m); |
|
|
|
static void attach(Client *c); |
|
|
|
static void attach(Client *c); |
|
|
|
static void attachBelow(Client *c); |
|
|
|
static void attachBelow(Client *c); |
|
|
|
|
|
|
|
static void toggleAttachBelow(); |
|
|
|
static void attachstack(Client *c); |
|
|
|
static void attachstack(Client *c); |
|
|
|
static void buttonpress(XEvent *e); |
|
|
|
static void buttonpress(XEvent *e); |
|
|
|
static void checkotherwm(void); |
|
|
|
static void checkotherwm(void); |
|
|
@ -422,6 +423,11 @@ attachBelow(Client *c) |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void toggleAttachBelow() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
attachbelow = !attachbelow; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void |
|
|
|
void |
|
|
|
attachstack(Client *c) |
|
|
|
attachstack(Client *c) |
|
|
|
{ |
|
|
|
{ |
|
|
|