Merge branch 'stachelbeere1248/patched/swallow' into stachelbeere1248/fullpatched
This commit is contained in:
commit
711b5bfb6d
3 changed files with 129 additions and 9 deletions
12
client.h
12
client.h
|
@ -131,6 +131,18 @@ client_get_appid(Client *c)
|
||||||
return c->surface.xdg->toplevel->app_id;
|
return c->surface.xdg->toplevel->app_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline int
|
||||||
|
client_get_pid(Client *c)
|
||||||
|
{
|
||||||
|
pid_t pid;
|
||||||
|
#ifdef XWAYLAND
|
||||||
|
if (client_is_x11(c))
|
||||||
|
return c->surface.xwayland->pid;
|
||||||
|
#endif
|
||||||
|
wl_client_get_credentials(c->surface.xdg->client->client, &pid, NULL, NULL);
|
||||||
|
return pid;
|
||||||
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
client_get_clip(Client *c, struct wlr_box *clip)
|
client_get_clip(Client *c, struct wlr_box *clip)
|
||||||
{
|
{
|
||||||
|
|
|
@ -32,11 +32,12 @@ static const char *const autostart[] = {
|
||||||
|
|
||||||
/* NOTE: ALWAYS keep a rule declared even if you don't use rules (e.g leave at least one example) */
|
/* NOTE: ALWAYS keep a rule declared even if you don't use rules (e.g leave at least one example) */
|
||||||
static const Rule rules[] = {
|
static const Rule rules[] = {
|
||||||
/* app_id title tags mask isfloating skipfocus monitor */
|
|
||||||
|
/* app_id title tags mask isfloating skipfocus isterm noswallow monitor */
|
||||||
/* examples: */
|
/* examples: */
|
||||||
{ "Gimp_EXAMPLE", NULL, 0, 1, 0, -1 }, /* Start on currently visible tags floating, not tiled */
|
{ "Gimp_EXAMPLE", NULL, 0, 1, 0, 0, 0, -1 }, /* Start on currently visible tags floating, not tiled */
|
||||||
{ "firefox_EXAMPLE", NULL, 1 << 8, 0, 0, -1 }, /* Start on ONLY tag "9" */
|
{ "firefox_EXAMPLE", NULL, 1 << 8, 0, 0, 0, 0, -1 }, /* Start on ONLY tag "9" */
|
||||||
{ "mako_EXAMPLE", NULL, 0, 1, 1, -1 }, /* Start floating and skip focus
|
{ "foot", NULL, 0, 0, 0, 1, 1, -1 }, /* make foot swallow clients that are not foot */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* layout(s) */
|
/* layout(s) */
|
||||||
|
|
117
dwl.c
117
dwl.c
|
@ -106,7 +106,8 @@ typedef struct {
|
||||||
|
|
||||||
typedef struct Pertag Pertag;
|
typedef struct Pertag Pertag;
|
||||||
typedef struct Monitor Monitor;
|
typedef struct Monitor Monitor;
|
||||||
typedef struct {
|
typedef struct Client Client;
|
||||||
|
struct Client {
|
||||||
/* Must keep these three elements in this order */
|
/* Must keep these three elements in this order */
|
||||||
unsigned int type; /* XDGShell or X11* */
|
unsigned int type; /* XDGShell or X11* */
|
||||||
int interact;
|
int interact;
|
||||||
|
@ -142,9 +143,16 @@ typedef struct {
|
||||||
#endif
|
#endif
|
||||||
unsigned int bw;
|
unsigned int bw;
|
||||||
uint32_t tags;
|
uint32_t tags;
|
||||||
int isfloating, isurgent, isfullscreen, skipfocus;
|
int isfloating,
|
||||||
|
isurgent,
|
||||||
|
isfullscreen,
|
||||||
|
skipfocus,
|
||||||
|
isterm,
|
||||||
|
noswallow;
|
||||||
uint32_t resize; /* configure serial of a pending resize */
|
uint32_t resize; /* configure serial of a pending resize */
|
||||||
} Client;
|
pid_t pid;
|
||||||
|
Client *swallowing, *swallowedby;
|
||||||
|
};
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
struct wl_list link;
|
struct wl_list link;
|
||||||
|
@ -242,6 +250,8 @@ typedef struct {
|
||||||
uint32_t tags;
|
uint32_t tags;
|
||||||
int isfloating;
|
int isfloating;
|
||||||
int skipfocus;
|
int skipfocus;
|
||||||
|
int isterm;
|
||||||
|
int noswallow;
|
||||||
int monitor;
|
int monitor;
|
||||||
} Rule;
|
} Rule;
|
||||||
|
|
||||||
|
@ -382,6 +392,10 @@ static void xytonode(double x, double y, struct wlr_surface **psurface,
|
||||||
Client **pc, LayerSurface **pl, double *nx, double *ny);
|
Client **pc, LayerSurface **pl, double *nx, double *ny);
|
||||||
static void zoom(const Arg *arg);
|
static void zoom(const Arg *arg);
|
||||||
static void regions(const Arg *arg);
|
static void regions(const Arg *arg);
|
||||||
|
static pid_t getparentprocess(pid_t p);
|
||||||
|
static int isdescprocess(pid_t p, pid_t c);
|
||||||
|
static Client *termforwin(Client *w);
|
||||||
|
static void swallow(Client *c, Client *w);
|
||||||
|
|
||||||
/* variables */
|
/* variables */
|
||||||
static const char broken[] = "broken";
|
static const char broken[] = "broken";
|
||||||
|
@ -507,11 +521,15 @@ applyrules(Client *c)
|
||||||
if (!(title = client_get_title(c)))
|
if (!(title = client_get_title(c)))
|
||||||
title = broken;
|
title = broken;
|
||||||
|
|
||||||
|
c->pid = client_get_pid(c);
|
||||||
|
|
||||||
for (r = rules; r < END(rules); r++) {
|
for (r = rules; r < END(rules); r++) {
|
||||||
if ((!r->title || strstr(title, r->title))
|
if ((!r->title || strstr(title, r->title))
|
||||||
&& (!r->id || strstr(appid, r->id))) {
|
&& (!r->id || strstr(appid, r->id))) {
|
||||||
c->isfloating = r->isfloating;
|
c->isfloating = r->isfloating;
|
||||||
c->skipfocus = r->skipfocus;
|
c->skipfocus = r->skipfocus;
|
||||||
|
c->isterm = r->isterm;
|
||||||
|
c->noswallow = r->noswallow;
|
||||||
newtags |= r->tags;
|
newtags |= r->tags;
|
||||||
i = 0;
|
i = 0;
|
||||||
wl_list_for_each(m, &mons, link) {
|
wl_list_for_each(m, &mons, link) {
|
||||||
|
@ -520,6 +538,21 @@ applyrules(Client *c)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (!c->noswallow && !client_is_float_type(c)
|
||||||
|
&& !c->surface.xdg->initial_commit) {
|
||||||
|
Client *p = termforwin(c);
|
||||||
|
if (p) {
|
||||||
|
c->swallowedby = p;
|
||||||
|
p->swallowing = c;
|
||||||
|
wl_list_remove(&c->link);
|
||||||
|
wl_list_remove(&c->flink);
|
||||||
|
swallow(c, p);
|
||||||
|
wl_list_remove(&p->link);
|
||||||
|
wl_list_remove(&p->flink);
|
||||||
|
mon = p->mon;
|
||||||
|
newtags = p->tags;
|
||||||
|
}
|
||||||
|
}
|
||||||
setmon(c, mon, newtags);
|
setmon(c, mon, newtags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1882,6 +1915,63 @@ handlesig(int signo)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pid_t
|
||||||
|
getparentprocess(pid_t p)
|
||||||
|
{
|
||||||
|
unsigned int v = 0;
|
||||||
|
|
||||||
|
FILE *f;
|
||||||
|
char buf[256];
|
||||||
|
snprintf(buf, sizeof(buf) - 1, "/proc/%u/stat", (unsigned)p);
|
||||||
|
|
||||||
|
if (!(f = fopen(buf, "r")))
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
fscanf(f, "%*u %*s %*c %u", &v);
|
||||||
|
fclose(f);
|
||||||
|
|
||||||
|
return (pid_t)v;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
isdescprocess(pid_t p, pid_t c)
|
||||||
|
{
|
||||||
|
while (p != c && c != 0)
|
||||||
|
c = getparentprocess(c);
|
||||||
|
|
||||||
|
return (int)c;
|
||||||
|
}
|
||||||
|
|
||||||
|
Client *
|
||||||
|
termforwin(Client *w)
|
||||||
|
{
|
||||||
|
Client *c;
|
||||||
|
|
||||||
|
if (!w->pid || w->isterm || w->noswallow)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
wl_list_for_each(c, &fstack, flink)
|
||||||
|
if (c->isterm && !c->swallowing && c->pid && isdescprocess(c->pid, w->pid))
|
||||||
|
return c;
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
swallow(Client *c, Client *w)
|
||||||
|
{
|
||||||
|
c->bw = w->bw;
|
||||||
|
c->isfloating = w->isfloating;
|
||||||
|
c->isurgent = w->isurgent;
|
||||||
|
c->isfullscreen = w->isfullscreen;
|
||||||
|
c->tags = w->tags;
|
||||||
|
c->geom = w->geom;
|
||||||
|
wl_list_insert(&w->link, &c->link);
|
||||||
|
wl_list_insert(&w->flink, &c->flink);
|
||||||
|
wlr_scene_node_set_enabled(&w->scene->node, 0);
|
||||||
|
wlr_scene_node_set_enabled(&c->scene->node, 1);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
incnmaster(const Arg *arg)
|
incnmaster(const Arg *arg)
|
||||||
{
|
{
|
||||||
|
@ -3181,15 +3271,32 @@ unmapnotify(struct wl_listener *listener, void *data)
|
||||||
grabc = NULL;
|
grabc = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (c->swallowedby)
|
||||||
|
swallow(c->swallowedby, c);
|
||||||
|
|
||||||
if (client_is_unmanaged(c)) {
|
if (client_is_unmanaged(c)) {
|
||||||
if (c == exclusive_focus) {
|
if (c == exclusive_focus) {
|
||||||
exclusive_focus = NULL;
|
exclusive_focus = NULL;
|
||||||
focusclient(focustop(selmon), 1);
|
focusclient(focustop(selmon), 1);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
wl_list_remove(&c->link);
|
if (!c->swallowing)
|
||||||
|
wl_list_remove(&c->link);
|
||||||
setmon(c, NULL, 0);
|
setmon(c, NULL, 0);
|
||||||
wl_list_remove(&c->flink);
|
if (!c->swallowing)
|
||||||
|
wl_list_remove(&c->flink);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (c->swallowedby) {
|
||||||
|
c->swallowedby->prev = c->geom;
|
||||||
|
setfullscreen(c->swallowedby, c->isfullscreen);
|
||||||
|
c->swallowedby->swallowing = NULL;
|
||||||
|
c->swallowedby = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (c->swallowing) {
|
||||||
|
c->swallowing->swallowedby = NULL;
|
||||||
|
c->swallowing = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
wlr_scene_node_destroy(&c->scene->node);
|
wlr_scene_node_destroy(&c->scene->node);
|
||||||
|
|
Loading…
Add table
Reference in a new issue