mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 12:05:45 +00:00
swallow: arrange monitor if window is not swallowed
This commit is contained in:
parent
7b477bc7db
commit
819d06c5c9
4
dwm.c
4
dwm.c
@ -2214,9 +2214,7 @@ manage(Window w, XWindowAttributes *wa)
|
|||||||
XMapWindow(dpy, c->win);
|
XMapWindow(dpy, c->win);
|
||||||
#endif // BAR_WINTITLEACTIONS_PATCH
|
#endif // BAR_WINTITLEACTIONS_PATCH
|
||||||
#if SWALLOW_PATCH
|
#if SWALLOW_PATCH
|
||||||
if (term)
|
if (!(term && swallow(term, c)))
|
||||||
swallow(term, c);
|
|
||||||
else
|
|
||||||
arrange(c->mon);
|
arrange(c->mon);
|
||||||
#else
|
#else
|
||||||
arrange(c->mon);
|
arrange(c->mon);
|
||||||
|
@ -8,15 +8,15 @@
|
|||||||
static int scanner;
|
static int scanner;
|
||||||
static xcb_connection_t *xcon;
|
static xcb_connection_t *xcon;
|
||||||
|
|
||||||
void
|
int
|
||||||
swallow(Client *p, Client *c)
|
swallow(Client *p, Client *c)
|
||||||
{
|
{
|
||||||
Client *s;
|
Client *s;
|
||||||
|
|
||||||
if (c->noswallow > 0 || c->isterminal)
|
if (c->noswallow > 0 || c->isterminal)
|
||||||
return;
|
return 0;
|
||||||
if (c->noswallow < 0 && !swallowfloating && c->isfloating)
|
if (c->noswallow < 0 && !swallowfloating && c->isfloating)
|
||||||
return;
|
return 0;
|
||||||
|
|
||||||
detach(c);
|
detach(c);
|
||||||
detachstack(c);
|
detachstack(c);
|
||||||
@ -40,6 +40,8 @@ swallow(Client *p, Client *c)
|
|||||||
arrange(p->mon);
|
arrange(p->mon);
|
||||||
configure(p);
|
configure(p);
|
||||||
updateclientlist();
|
updateclientlist();
|
||||||
|
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
static pid_t getparentprocess(pid_t p);
|
static pid_t getparentprocess(pid_t p);
|
||||||
static int isdescprocess(pid_t p, pid_t c);
|
static int isdescprocess(pid_t p, pid_t c);
|
||||||
static void swallow(Client *p, Client *c);
|
static int swallow(Client *p, Client *c);
|
||||||
static Client *swallowingclient(Window w);
|
static Client *swallowingclient(Window w);
|
||||||
static Client *termforwin(const Client *c);
|
static Client *termforwin(const Client *c);
|
||||||
static void unswallow(Client *c);
|
static void unswallow(Client *c);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user