|
|
@@ -67,14 +67,14 @@
|
|
|
|
#define VISIBLEON(C, M) ((M) && (C)->mon == (M) && ((C)->tags & (M)->tagset[(M)->seltags]))
|
|
|
|
#define VISIBLEON(C, M) ((M) && (C)->mon == (M) && ((C)->tags & (M)->tagset[(M)->seltags]))
|
|
|
|
#define LENGTH(X) (sizeof X / sizeof X[0])
|
|
|
|
#define LENGTH(X) (sizeof X / sizeof X[0])
|
|
|
|
#define END(A) ((A) + LENGTH(A))
|
|
|
|
#define END(A) ((A) + LENGTH(A))
|
|
|
|
#define TAGMASK ((1 << LENGTH(tags)) - 1)
|
|
|
|
#define TAGMASK ((1u << tagcount) - 1)
|
|
|
|
#define LISTEN(E, L, H) wl_signal_add((E), ((L)->notify = (H), (L)))
|
|
|
|
#define LISTEN(E, L, H) wl_signal_add((E), ((L)->notify = (H), (L)))
|
|
|
|
#define IDLE_NOTIFY_ACTIVITY wlr_idle_notify_activity(idle, seat), wlr_idle_notifier_v1_notify_activity(idle_notifier, seat)
|
|
|
|
#define IDLE_NOTIFY_ACTIVITY wlr_idle_notify_activity(idle, seat), wlr_idle_notifier_v1_notify_activity(idle_notifier, seat)
|
|
|
|
|
|
|
|
|
|
|
|
/* enums */
|
|
|
|
/* enums */
|
|
|
|
enum { CurNormal, CurPressed, CurMove, CurResize }; /* cursor */
|
|
|
|
enum { CurNormal, CurPressed, CurMove, CurResize }; /* cursor */
|
|
|
|
enum { XDGShell, LayerShell, X11Managed, X11Unmanaged }; /* client types */
|
|
|
|
enum { XDGShell, LayerShell, X11Managed, X11Unmanaged }; /* client types */
|
|
|
|
enum { LyrBg, LyrBottom, LyrTop, LyrOverlay, LyrTile, LyrFloat, LyrFS, LyrDragIcon, LyrBlock, NUM_LAYERS }; /* scene layers */
|
|
|
|
enum { LyrBg, LyrBottom, LyrTile, LyrFloat, LyrFS, LyrTop, LyrOverlay, LyrBlock, NUM_LAYERS }; /* scene layers */
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
enum { NetWMWindowTypeDialog, NetWMWindowTypeSplash, NetWMWindowTypeToolbar,
|
|
|
|
enum { NetWMWindowTypeDialog, NetWMWindowTypeSplash, NetWMWindowTypeToolbar,
|
|
|
|
NetWMWindowTypeUtility, NetLast }; /* EWMH atoms */
|
|
|
|
NetWMWindowTypeUtility, NetLast }; /* EWMH atoms */
|
|
|
@@ -82,7 +82,7 @@ enum { NetWMWindowTypeDialog, NetWMWindowTypeSplash, NetWMWindowTypeToolbar,
|
|
|
|
|
|
|
|
|
|
|
|
typedef union {
|
|
|
|
typedef union {
|
|
|
|
int i;
|
|
|
|
int i;
|
|
|
|
unsigned int ui;
|
|
|
|
uint32_t ui;
|
|
|
|
float f;
|
|
|
|
float f;
|
|
|
|
const void *v;
|
|
|
|
const void *v;
|
|
|
|
} Arg;
|
|
|
|
} Arg;
|
|
|
@@ -98,7 +98,7 @@ typedef struct Monitor Monitor;
|
|
|
|
typedef struct {
|
|
|
|
typedef struct {
|
|
|
|
/* 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* */
|
|
|
|
struct wlr_box geom; /* layout-relative, includes border */
|
|
|
|
struct wlr_box geom; /* layout-relative, includes border */
|
|
|
|
Monitor *mon;
|
|
|
|
Monitor *mon;
|
|
|
|
struct wlr_scene_tree *scene;
|
|
|
|
struct wlr_scene_tree *scene;
|
|
|
|
struct wlr_scene_rect *border[4]; /* top, bottom, left, right */
|
|
|
|
struct wlr_scene_rect *border[4]; /* top, bottom, left, right */
|
|
|
@@ -116,14 +116,14 @@ typedef struct {
|
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener set_title;
|
|
|
|
struct wl_listener set_title;
|
|
|
|
struct wl_listener fullscreen;
|
|
|
|
struct wl_listener fullscreen;
|
|
|
|
struct wlr_box prev; /* layout-relative, includes border */
|
|
|
|
struct wlr_box prev; /* layout-relative, includes border */
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
struct wl_listener activate;
|
|
|
|
struct wl_listener activate;
|
|
|
|
struct wl_listener configure;
|
|
|
|
struct wl_listener configure;
|
|
|
|
struct wl_listener set_hints;
|
|
|
|
struct wl_listener set_hints;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
unsigned int bw;
|
|
|
|
unsigned int bw;
|
|
|
|
unsigned int tags;
|
|
|
|
uint32_t tags;
|
|
|
|
int isfloating, isurgent, isfullscreen;
|
|
|
|
int isfloating, isurgent, isfullscreen;
|
|
|
|
uint32_t resize; /* configure serial of a pending resize */
|
|
|
|
uint32_t resize; /* configure serial of a pending resize */
|
|
|
|
} Client;
|
|
|
|
} Client;
|
|
|
@@ -139,6 +139,11 @@ typedef struct {
|
|
|
|
struct wl_list link;
|
|
|
|
struct wl_list link;
|
|
|
|
struct wlr_keyboard *wlr_keyboard;
|
|
|
|
struct wlr_keyboard *wlr_keyboard;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int nsyms;
|
|
|
|
|
|
|
|
const xkb_keysym_t *keysyms; /* invalid if nsyms == 0 */
|
|
|
|
|
|
|
|
uint32_t mods; /* invalid if nsyms == 0 */
|
|
|
|
|
|
|
|
struct wl_event_source *key_repeat_source;
|
|
|
|
|
|
|
|
|
|
|
|
struct wl_listener modifiers;
|
|
|
|
struct wl_listener modifiers;
|
|
|
|
struct wl_listener key;
|
|
|
|
struct wl_listener key;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener destroy;
|
|
|
@@ -176,15 +181,16 @@ struct Monitor {
|
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener destroy;
|
|
|
|
struct wl_listener destroy_lock_surface;
|
|
|
|
struct wl_listener destroy_lock_surface;
|
|
|
|
struct wlr_session_lock_surface_v1 *lock_surface;
|
|
|
|
struct wlr_session_lock_surface_v1 *lock_surface;
|
|
|
|
struct wlr_box m; /* monitor area, layout-relative */
|
|
|
|
struct wlr_box m; /* monitor area, layout-relative */
|
|
|
|
struct wlr_box w; /* window area, layout-relative */
|
|
|
|
struct wlr_box w; /* window area, layout-relative */
|
|
|
|
struct wl_list layers[4]; /* LayerSurface::link */
|
|
|
|
struct wl_list layers[4]; /* LayerSurface::link */
|
|
|
|
const Layout *lt[2];
|
|
|
|
const Layout *lt[2];
|
|
|
|
unsigned int seltags;
|
|
|
|
unsigned int seltags;
|
|
|
|
unsigned int sellt;
|
|
|
|
unsigned int sellt;
|
|
|
|
unsigned int tagset[2];
|
|
|
|
uint32_t tagset[2];
|
|
|
|
double mfact;
|
|
|
|
double mfact;
|
|
|
|
int nmaster;
|
|
|
|
int nmaster;
|
|
|
|
|
|
|
|
char ltsymbol[16];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
typedef struct {
|
|
|
@@ -194,12 +200,13 @@ typedef struct {
|
|
|
|
float scale;
|
|
|
|
float scale;
|
|
|
|
const Layout *lt;
|
|
|
|
const Layout *lt;
|
|
|
|
enum wl_output_transform rr;
|
|
|
|
enum wl_output_transform rr;
|
|
|
|
|
|
|
|
int x, y;
|
|
|
|
} MonitorRule;
|
|
|
|
} MonitorRule;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
typedef struct {
|
|
|
|
const char *id;
|
|
|
|
const char *id;
|
|
|
|
const char *title;
|
|
|
|
const char *title;
|
|
|
|
unsigned int tags;
|
|
|
|
uint32_t tags;
|
|
|
|
int isfloating;
|
|
|
|
int isfloating;
|
|
|
|
int monitor;
|
|
|
|
int monitor;
|
|
|
|
} Rule;
|
|
|
|
} Rule;
|
|
|
@@ -258,6 +265,7 @@ static void inputdevice(struct wl_listener *listener, void *data);
|
|
|
|
static int keybinding(uint32_t mods, xkb_keysym_t sym);
|
|
|
|
static int keybinding(uint32_t mods, xkb_keysym_t sym);
|
|
|
|
static void keypress(struct wl_listener *listener, void *data);
|
|
|
|
static void keypress(struct wl_listener *listener, void *data);
|
|
|
|
static void keypressmod(struct wl_listener *listener, void *data);
|
|
|
|
static void keypressmod(struct wl_listener *listener, void *data);
|
|
|
|
|
|
|
|
static int keyrepeat(void *data);
|
|
|
|
static void killclient(const Arg *arg);
|
|
|
|
static void killclient(const Arg *arg);
|
|
|
|
static void locksession(struct wl_listener *listener, void *data);
|
|
|
|
static void locksession(struct wl_listener *listener, void *data);
|
|
|
|
static void maplayersurfacenotify(struct wl_listener *listener, void *data);
|
|
|
|
static void maplayersurfacenotify(struct wl_listener *listener, void *data);
|
|
|
@@ -285,10 +293,11 @@ static void setfloating(Client *c, int floating);
|
|
|
|
static void setfullscreen(Client *c, int fullscreen);
|
|
|
|
static void setfullscreen(Client *c, int fullscreen);
|
|
|
|
static void setlayout(const Arg *arg);
|
|
|
|
static void setlayout(const Arg *arg);
|
|
|
|
static void setmfact(const Arg *arg);
|
|
|
|
static void setmfact(const Arg *arg);
|
|
|
|
static void setmon(Client *c, Monitor *m, unsigned int newtags);
|
|
|
|
static void setmon(Client *c, Monitor *m, uint32_t newtags);
|
|
|
|
static void setpsel(struct wl_listener *listener, void *data);
|
|
|
|
static void setpsel(struct wl_listener *listener, void *data);
|
|
|
|
static void setsel(struct wl_listener *listener, void *data);
|
|
|
|
static void setsel(struct wl_listener *listener, void *data);
|
|
|
|
static void setup(void);
|
|
|
|
static void setup(void);
|
|
|
|
|
|
|
|
static void sigchld(int unused);
|
|
|
|
static void spawn(const Arg *arg);
|
|
|
|
static void spawn(const Arg *arg);
|
|
|
|
static void startdrag(struct wl_listener *listener, void *data);
|
|
|
|
static void startdrag(struct wl_listener *listener, void *data);
|
|
|
|
static void tag(const Arg *arg);
|
|
|
|
static void tag(const Arg *arg);
|
|
|
@@ -321,6 +330,8 @@ static struct wl_display *dpy;
|
|
|
|
static struct wlr_backend *backend;
|
|
|
|
static struct wlr_backend *backend;
|
|
|
|
static struct wlr_scene *scene;
|
|
|
|
static struct wlr_scene *scene;
|
|
|
|
static struct wlr_scene_tree *layers[NUM_LAYERS];
|
|
|
|
static struct wlr_scene_tree *layers[NUM_LAYERS];
|
|
|
|
|
|
|
|
/* Map from ZWLR_LAYER_SHELL_* constants to Lyr* enum */
|
|
|
|
|
|
|
|
static const int layermap[] = { LyrBg, LyrBottom, LyrTop, LyrOverlay };
|
|
|
|
static struct wlr_renderer *drw;
|
|
|
|
static struct wlr_renderer *drw;
|
|
|
|
static struct wlr_allocator *alloc;
|
|
|
|
static struct wlr_allocator *alloc;
|
|
|
|
static struct wlr_compositor *compositor;
|
|
|
|
static struct wlr_compositor *compositor;
|
|
|
@@ -389,7 +400,6 @@ static void configurex11(struct wl_listener *listener, void *data);
|
|
|
|
static void createnotifyx11(struct wl_listener *listener, void *data);
|
|
|
|
static void createnotifyx11(struct wl_listener *listener, void *data);
|
|
|
|
static Atom getatom(xcb_connection_t *xc, const char *name);
|
|
|
|
static Atom getatom(xcb_connection_t *xc, const char *name);
|
|
|
|
static void sethints(struct wl_listener *listener, void *data);
|
|
|
|
static void sethints(struct wl_listener *listener, void *data);
|
|
|
|
static void sigchld(int unused);
|
|
|
|
|
|
|
|
static void xwaylandready(struct wl_listener *listener, void *data);
|
|
|
|
static void xwaylandready(struct wl_listener *listener, void *data);
|
|
|
|
static struct wl_listener new_xwayland_surface = {.notify = createnotifyx11};
|
|
|
|
static struct wl_listener new_xwayland_surface = {.notify = createnotifyx11};
|
|
|
|
static struct wl_listener xwayland_ready = {.notify = xwaylandready};
|
|
|
|
static struct wl_listener xwayland_ready = {.notify = xwaylandready};
|
|
|
@@ -398,14 +408,13 @@ static Atom netatom[NetLast];
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* configuration, allows nested code to access above variables */
|
|
|
|
/* configuration, allows nested code to access above variables */
|
|
|
|
|
|
|
|
#include "push.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "push.c"
|
|
|
|
|
|
|
|
|
|
|
|
/* attempt to encapsulate suck into one file */
|
|
|
|
/* attempt to encapsulate suck into one file */
|
|
|
|
#include "client.h"
|
|
|
|
#include "client.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* compile-time check if all tags fit into an unsigned int bit array. */
|
|
|
|
|
|
|
|
struct NumTags { char limitexceeded[LENGTH(tags) > 31 ? -1 : 1]; };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* function implementations */
|
|
|
|
/* function implementations */
|
|
|
|
void
|
|
|
|
void
|
|
|
|
applybounds(Client *c, struct wlr_box *bbox)
|
|
|
|
applybounds(Client *c, struct wlr_box *bbox)
|
|
|
@@ -416,8 +425,8 @@ applybounds(Client *c, struct wlr_box *bbox)
|
|
|
|
/* try to set size hints */
|
|
|
|
/* try to set size hints */
|
|
|
|
c->geom.width = MAX(min.width + (2 * (int)c->bw), c->geom.width);
|
|
|
|
c->geom.width = MAX(min.width + (2 * (int)c->bw), c->geom.width);
|
|
|
|
c->geom.height = MAX(min.height + (2 * (int)c->bw), c->geom.height);
|
|
|
|
c->geom.height = MAX(min.height + (2 * (int)c->bw), c->geom.height);
|
|
|
|
/* Some clients set them max size to INT_MAX, which does not violates
|
|
|
|
/* Some clients set their max size to INT_MAX, which does not violate the
|
|
|
|
* the protocol but its innecesary, they can set them max size to zero. */
|
|
|
|
* protocol but it's unnecesary, as they can set their max size to zero. */
|
|
|
|
if (max.width > 0 && !(2 * c->bw > INT_MAX - max.width)) /* Checks for overflow */
|
|
|
|
if (max.width > 0 && !(2 * c->bw > INT_MAX - max.width)) /* Checks for overflow */
|
|
|
|
c->geom.width = MIN(max.width + (2 * c->bw), c->geom.width);
|
|
|
|
c->geom.width = MIN(max.width + (2 * c->bw), c->geom.width);
|
|
|
|
if (max.height > 0 && !(2 * c->bw > INT_MAX - max.height)) /* Checks for overflow */
|
|
|
|
if (max.height > 0 && !(2 * c->bw > INT_MAX - max.height)) /* Checks for overflow */
|
|
|
@@ -439,7 +448,7 @@ applyrules(Client *c)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/* rule matching */
|
|
|
|
/* rule matching */
|
|
|
|
const char *appid, *title;
|
|
|
|
const char *appid, *title;
|
|
|
|
unsigned int i, newtags = 0;
|
|
|
|
uint32_t i, newtags = 0;
|
|
|
|
const Rule *r;
|
|
|
|
const Rule *r;
|
|
|
|
Monitor *mon = selmon, *m;
|
|
|
|
Monitor *mon = selmon, *m;
|
|
|
|
|
|
|
|
|
|
|
@@ -475,7 +484,9 @@ arrange(Monitor *m)
|
|
|
|
wlr_scene_node_set_enabled(&m->fullscreen_bg->node,
|
|
|
|
wlr_scene_node_set_enabled(&m->fullscreen_bg->node,
|
|
|
|
(c = focustop(m)) && c->isfullscreen);
|
|
|
|
(c = focustop(m)) && c->isfullscreen);
|
|
|
|
|
|
|
|
|
|
|
|
if (m && m->lt[m->sellt]->arrange)
|
|
|
|
strncpy(m->ltsymbol, m->lt[m->sellt]->symbol, LENGTH(m->ltsymbol));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (m->lt[m->sellt]->arrange)
|
|
|
|
m->lt[m->sellt]->arrange(m);
|
|
|
|
m->lt[m->sellt]->arrange(m);
|
|
|
|
motionnotify(0);
|
|
|
|
motionnotify(0);
|
|
|
|
checkidleinhibitor(NULL);
|
|
|
|
checkidleinhibitor(NULL);
|
|
|
@@ -624,13 +635,13 @@ chvt(const Arg *arg)
|
|
|
|
void
|
|
|
|
void
|
|
|
|
checkidleinhibitor(struct wlr_surface *exclude)
|
|
|
|
checkidleinhibitor(struct wlr_surface *exclude)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
int inhibited = 0;
|
|
|
|
int inhibited = 0, unused_lx, unused_ly;
|
|
|
|
struct wlr_idle_inhibitor_v1 *inhibitor;
|
|
|
|
struct wlr_idle_inhibitor_v1 *inhibitor;
|
|
|
|
wl_list_for_each(inhibitor, &idle_inhibit_mgr->inhibitors, link) {
|
|
|
|
wl_list_for_each(inhibitor, &idle_inhibit_mgr->inhibitors, link) {
|
|
|
|
struct wlr_surface *surface = wlr_surface_get_root_surface(inhibitor->surface);
|
|
|
|
struct wlr_surface *surface = wlr_surface_get_root_surface(inhibitor->surface);
|
|
|
|
struct wlr_scene_tree *tree = surface->data;
|
|
|
|
struct wlr_scene_tree *tree = surface->data;
|
|
|
|
if (exclude != surface && (bypass_surface_visibility || (!tree
|
|
|
|
if (exclude != surface && (bypass_surface_visibility || (!tree
|
|
|
|
|| tree->node.enabled))) {
|
|
|
|
|| wlr_scene_node_coords(&tree->node, &unused_lx, &unused_ly)))) {
|
|
|
|
inhibited = 1;
|
|
|
|
inhibited = 1;
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -666,6 +677,7 @@ cleanupkeyboard(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Keyboard *kb = wl_container_of(listener, kb, destroy);
|
|
|
|
Keyboard *kb = wl_container_of(listener, kb, destroy);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wl_event_source_remove(kb->key_repeat_source);
|
|
|
|
wl_list_remove(&kb->link);
|
|
|
|
wl_list_remove(&kb->link);
|
|
|
|
wl_list_remove(&kb->modifiers.link);
|
|
|
|
wl_list_remove(&kb->modifiers.link);
|
|
|
|
wl_list_remove(&kb->key.link);
|
|
|
|
wl_list_remove(&kb->key.link);
|
|
|
@@ -728,17 +740,16 @@ commitlayersurfacenotify(struct wl_listener *listener, void *data)
|
|
|
|
LayerSurface *layersurface = wl_container_of(listener, layersurface, surface_commit);
|
|
|
|
LayerSurface *layersurface = wl_container_of(listener, layersurface, surface_commit);
|
|
|
|
struct wlr_layer_surface_v1 *wlr_layer_surface = layersurface->layer_surface;
|
|
|
|
struct wlr_layer_surface_v1 *wlr_layer_surface = layersurface->layer_surface;
|
|
|
|
struct wlr_output *wlr_output = wlr_layer_surface->output;
|
|
|
|
struct wlr_output *wlr_output = wlr_layer_surface->output;
|
|
|
|
|
|
|
|
struct wlr_scene_tree *layer = layers[layermap[wlr_layer_surface->current.layer]];
|
|
|
|
|
|
|
|
|
|
|
|
/* For some reason this layersurface have no monitor, this can be because
|
|
|
|
/* For some reason this layersurface have no monitor, this can be because
|
|
|
|
* its monitor has just been destroyed */
|
|
|
|
* its monitor has just been destroyed */
|
|
|
|
if (!wlr_output || !(layersurface->mon = wlr_output->data))
|
|
|
|
if (!wlr_output || !(layersurface->mon = wlr_output->data))
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
if (layers[wlr_layer_surface->current.layer] != layersurface->scene->node.parent) {
|
|
|
|
if (layer != layersurface->scene->node.parent) {
|
|
|
|
wlr_scene_node_reparent(&layersurface->scene->node,
|
|
|
|
wlr_scene_node_reparent(&layersurface->scene->node, layer);
|
|
|
|
layers[wlr_layer_surface->current.layer]);
|
|
|
|
wlr_scene_node_reparent(&layersurface->popups->node, layer);
|
|
|
|
wlr_scene_node_reparent(&layersurface->popups->node,
|
|
|
|
|
|
|
|
layers[wlr_layer_surface->current.layer]);
|
|
|
|
|
|
|
|
wl_list_remove(&layersurface->link);
|
|
|
|
wl_list_remove(&layersurface->link);
|
|
|
|
wl_list_insert(&layersurface->mon->layers[wlr_layer_surface->current.layer],
|
|
|
|
wl_list_insert(&layersurface->mon->layers[wlr_layer_surface->current.layer],
|
|
|
|
&layersurface->link);
|
|
|
|
&layersurface->link);
|
|
|
@@ -766,9 +777,7 @@ commitnotify(struct wl_listener *listener, void *data)
|
|
|
|
c->isfloating ? resize(c, c->geom, 1) : arrange(c->mon);
|
|
|
|
c->isfloating ? resize(c, c->geom, 1) : arrange(c->mon);
|
|
|
|
|
|
|
|
|
|
|
|
/* mark a pending resize as completed */
|
|
|
|
/* mark a pending resize as completed */
|
|
|
|
if (c->resize && (c->resize <= c->surface.xdg->current.configure_serial
|
|
|
|
if (c->resize && c->resize <= c->surface.xdg->current.configure_serial)
|
|
|
|
|| (c->surface.xdg->current.geometry.width == c->surface.xdg->pending.geometry.width
|
|
|
|
|
|
|
|
&& c->surface.xdg->current.geometry.height == c->surface.xdg->pending.geometry.height)))
|
|
|
|
|
|
|
|
c->resize = 0;
|
|
|
|
c->resize = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@@ -813,6 +822,9 @@ createkeyboard(struct wlr_keyboard *keyboard)
|
|
|
|
|
|
|
|
|
|
|
|
wlr_seat_set_keyboard(seat, keyboard);
|
|
|
|
wlr_seat_set_keyboard(seat, keyboard);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
kb->key_repeat_source = wl_event_loop_add_timer(
|
|
|
|
|
|
|
|
wl_display_get_event_loop(dpy), keyrepeat, kb);
|
|
|
|
|
|
|
|
|
|
|
|
/* And add the keyboard to our list of keyboards */
|
|
|
|
/* And add the keyboard to our list of keyboards */
|
|
|
|
wl_list_insert(&keyboards, &kb->link);
|
|
|
|
wl_list_insert(&keyboards, &kb->link);
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -823,12 +835,15 @@ createlayersurface(struct wl_listener *listener, void *data)
|
|
|
|
struct wlr_layer_surface_v1 *wlr_layer_surface = data;
|
|
|
|
struct wlr_layer_surface_v1 *wlr_layer_surface = data;
|
|
|
|
LayerSurface *layersurface;
|
|
|
|
LayerSurface *layersurface;
|
|
|
|
struct wlr_layer_surface_v1_state old_state;
|
|
|
|
struct wlr_layer_surface_v1_state old_state;
|
|
|
|
|
|
|
|
struct wlr_scene_tree *l = layers[layermap[wlr_layer_surface->pending.layer]];
|
|
|
|
|
|
|
|
|
|
|
|
if (!wlr_layer_surface->output)
|
|
|
|
if (!wlr_layer_surface->output)
|
|
|
|
wlr_layer_surface->output = selmon ? selmon->wlr_output : NULL;
|
|
|
|
wlr_layer_surface->output = selmon ? selmon->wlr_output : NULL;
|
|
|
|
|
|
|
|
|
|
|
|
if (!wlr_layer_surface->output)
|
|
|
|
if (!wlr_layer_surface->output) {
|
|
|
|
wlr_layer_surface_v1_destroy(wlr_layer_surface);
|
|
|
|
wlr_layer_surface_v1_destroy(wlr_layer_surface);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
layersurface = ecalloc(1, sizeof(LayerSurface));
|
|
|
|
layersurface = ecalloc(1, sizeof(LayerSurface));
|
|
|
|
layersurface->type = LayerShell;
|
|
|
|
layersurface->type = LayerShell;
|
|
|
@@ -845,11 +860,9 @@ createlayersurface(struct wl_listener *listener, void *data)
|
|
|
|
layersurface->mon = wlr_layer_surface->output->data;
|
|
|
|
layersurface->mon = wlr_layer_surface->output->data;
|
|
|
|
wlr_layer_surface->data = layersurface;
|
|
|
|
wlr_layer_surface->data = layersurface;
|
|
|
|
|
|
|
|
|
|
|
|
layersurface->scene_layer = wlr_scene_layer_surface_v1_create(
|
|
|
|
layersurface->scene_layer = wlr_scene_layer_surface_v1_create(l, wlr_layer_surface);
|
|
|
|
layers[wlr_layer_surface->pending.layer], wlr_layer_surface);
|
|
|
|
|
|
|
|
layersurface->scene = layersurface->scene_layer->tree;
|
|
|
|
layersurface->scene = layersurface->scene_layer->tree;
|
|
|
|
layersurface->popups = wlr_layer_surface->surface->data =
|
|
|
|
layersurface->popups = wlr_layer_surface->surface->data = wlr_scene_tree_create(l);
|
|
|
|
wlr_scene_tree_create(layers[wlr_layer_surface->pending.layer]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
layersurface->scene->node.data = layersurface;
|
|
|
|
layersurface->scene->node.data = layersurface;
|
|
|
|
|
|
|
|
|
|
|
@@ -910,6 +923,8 @@ createmon(struct wl_listener *listener, void *data)
|
|
|
|
wlr_xcursor_manager_load(cursor_mgr, r->scale);
|
|
|
|
wlr_xcursor_manager_load(cursor_mgr, r->scale);
|
|
|
|
m->lt[0] = m->lt[1] = r->lt;
|
|
|
|
m->lt[0] = m->lt[1] = r->lt;
|
|
|
|
wlr_output_set_transform(wlr_output, r->rr);
|
|
|
|
wlr_output_set_transform(wlr_output, r->rr);
|
|
|
|
|
|
|
|
m->m.x = r->x;
|
|
|
|
|
|
|
|
m->m.y = r->y;
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -955,7 +970,11 @@ createmon(struct wl_listener *listener, void *data)
|
|
|
|
* output (such as DPI, scale factor, manufacturer, etc).
|
|
|
|
* output (such as DPI, scale factor, manufacturer, etc).
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
m->scene_output = wlr_scene_output_create(scene, wlr_output);
|
|
|
|
m->scene_output = wlr_scene_output_create(scene, wlr_output);
|
|
|
|
wlr_output_layout_add_auto(output_layout, wlr_output);
|
|
|
|
if (m->m.x < 0 || m->m.y < 0)
|
|
|
|
|
|
|
|
wlr_output_layout_add_auto(output_layout, wlr_output);
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
wlr_output_layout_add(output_layout, wlr_output, m->m.x, m->m.y);
|
|
|
|
|
|
|
|
strncpy(m->ltsymbol, m->lt[m->sellt]->symbol, LENGTH(m->ltsymbol));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
void
|
|
|
@@ -1006,7 +1025,7 @@ void
|
|
|
|
createpointer(struct wlr_pointer *pointer)
|
|
|
|
createpointer(struct wlr_pointer *pointer)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (wlr_input_device_is_libinput(&pointer->base)) {
|
|
|
|
if (wlr_input_device_is_libinput(&pointer->base)) {
|
|
|
|
struct libinput_device *libinput_device = (struct libinput_device*)
|
|
|
|
struct libinput_device *libinput_device = (struct libinput_device*)
|
|
|
|
wlr_libinput_get_device_handle(&pointer->base);
|
|
|
|
wlr_libinput_get_device_handle(&pointer->base);
|
|
|
|
|
|
|
|
|
|
|
|
if (libinput_device_config_tap_get_finger_count(libinput_device)) {
|
|
|
|
if (libinput_device_config_tap_get_finger_count(libinput_device)) {
|
|
|
@@ -1030,7 +1049,7 @@ createpointer(struct wlr_pointer *pointer)
|
|
|
|
|
|
|
|
|
|
|
|
if (libinput_device_config_scroll_get_methods(libinput_device) != LIBINPUT_CONFIG_SCROLL_NO_SCROLL)
|
|
|
|
if (libinput_device_config_scroll_get_methods(libinput_device) != LIBINPUT_CONFIG_SCROLL_NO_SCROLL)
|
|
|
|
libinput_device_config_scroll_set_method (libinput_device, scroll_method);
|
|
|
|
libinput_device_config_scroll_set_method (libinput_device, scroll_method);
|
|
|
|
|
|
|
|
|
|
|
|
if (libinput_device_config_click_get_methods(libinput_device) != LIBINPUT_CONFIG_CLICK_METHOD_NONE)
|
|
|
|
if (libinput_device_config_click_get_methods(libinput_device) != LIBINPUT_CONFIG_CLICK_METHOD_NONE)
|
|
|
|
libinput_device_config_click_set_method (libinput_device, click_method);
|
|
|
|
libinput_device_config_click_set_method (libinput_device, click_method);
|
|
|
|
|
|
|
|
|
|
|
@@ -1170,12 +1189,12 @@ Monitor *
|
|
|
|
dirtomon(enum wlr_direction dir)
|
|
|
|
dirtomon(enum wlr_direction dir)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
struct wlr_output *next;
|
|
|
|
struct wlr_output *next;
|
|
|
|
if (wlr_output_layout_get(output_layout, selmon->wlr_output)
|
|
|
|
if (!wlr_output_layout_get(output_layout, selmon->wlr_output))
|
|
|
|
&& (next = wlr_output_layout_adjacent_output(output_layout,
|
|
|
|
return selmon;
|
|
|
|
|
|
|
|
if ((next = wlr_output_layout_adjacent_output(output_layout,
|
|
|
|
dir, selmon->wlr_output, selmon->m.x, selmon->m.y)))
|
|
|
|
dir, selmon->wlr_output, selmon->m.x, selmon->m.y)))
|
|
|
|
return next->data;
|
|
|
|
return next->data;
|
|
|
|
if (wlr_output_layout_get(output_layout, selmon->wlr_output)
|
|
|
|
if ((next = wlr_output_layout_farthest_output(output_layout,
|
|
|
|
&& (next = wlr_output_layout_farthest_output(output_layout,
|
|
|
|
|
|
|
|
dir ^ (WLR_DIRECTION_LEFT|WLR_DIRECTION_RIGHT),
|
|
|
|
dir ^ (WLR_DIRECTION_LEFT|WLR_DIRECTION_RIGHT),
|
|
|
|
selmon->wlr_output, selmon->m.x, selmon->m.y)))
|
|
|
|
selmon->wlr_output, selmon->m.x, selmon->m.y)))
|
|
|
|
return next->data;
|
|
|
|
return next->data;
|
|
|
@@ -1186,7 +1205,9 @@ void
|
|
|
|
focusclient(Client *c, int lift)
|
|
|
|
focusclient(Client *c, int lift)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
struct wlr_surface *old = seat->keyboard_state.focused_surface;
|
|
|
|
struct wlr_surface *old = seat->keyboard_state.focused_surface;
|
|
|
|
int i;
|
|
|
|
int i, unused_lx, unused_ly, old_client_type;
|
|
|
|
|
|
|
|
Client *old_c = NULL;
|
|
|
|
|
|
|
|
LayerSurface *old_l = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
if (locked)
|
|
|
|
if (locked)
|
|
|
|
return;
|
|
|
|
return;
|
|
|
@@ -1198,6 +1219,12 @@ focusclient(Client *c, int lift)
|
|
|
|
if (c && client_surface(c) == old)
|
|
|
|
if (c && client_surface(c) == old)
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((old_client_type = toplevel_from_wlr_surface(old, &old_c, &old_l)) == XDGShell) {
|
|
|
|
|
|
|
|
struct wlr_xdg_popup *popup, *tmp;
|
|
|
|
|
|
|
|
wl_list_for_each_safe(popup, tmp, &old_c->surface.xdg->popups, link)
|
|
|
|
|
|
|
|
wlr_xdg_popup_destroy(popup);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Put the new client atop the focus stack and select its monitor */
|
|
|
|
/* Put the new client atop the focus stack and select its monitor */
|
|
|
|
if (c && !client_is_unmanaged(c)) {
|
|
|
|
if (c && !client_is_unmanaged(c)) {
|
|
|
|
wl_list_remove(&c->flink);
|
|
|
|
wl_list_remove(&c->flink);
|
|
|
@@ -1218,19 +1245,17 @@ focusclient(Client *c, int lift)
|
|
|
|
/* If an overlay is focused, don't focus or activate the client,
|
|
|
|
/* If an overlay is focused, don't focus or activate the client,
|
|
|
|
* but only update its position in fstack to render its border with focuscolor
|
|
|
|
* but only update its position in fstack to render its border with focuscolor
|
|
|
|
* and focus it after the overlay is closed. */
|
|
|
|
* and focus it after the overlay is closed. */
|
|
|
|
Client *w = NULL;
|
|
|
|
if (old_client_type == LayerShell && wlr_scene_node_coords(
|
|
|
|
LayerSurface *l = NULL;
|
|
|
|
&old_l->scene->node, &unused_lx, &unused_ly)
|
|
|
|
int type = toplevel_from_wlr_surface(old, &w, &l);
|
|
|
|
&& old_l->layer_surface->current.layer >= ZWLR_LAYER_SHELL_V1_LAYER_TOP) {
|
|
|
|
if (type == LayerShell && l->scene->node.enabled
|
|
|
|
|
|
|
|
&& l->layer_surface->current.layer >= ZWLR_LAYER_SHELL_V1_LAYER_TOP) {
|
|
|
|
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
} else if (w && w == exclusive_focus && client_wants_focus(w)) {
|
|
|
|
} else if (old_c && old_c == exclusive_focus && client_wants_focus(old_c)) {
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
/* Don't deactivate old client if the new one wants focus, as this causes issues with winecfg
|
|
|
|
/* Don't deactivate old client if the new one wants focus, as this causes issues with winecfg
|
|
|
|
* and probably other clients */
|
|
|
|
* and probably other clients */
|
|
|
|
} else if (w && !client_is_unmanaged(w) && (!c || !client_wants_focus(c))) {
|
|
|
|
} else if (old_c && !client_is_unmanaged(old_c) && (!c || !client_wants_focus(c))) {
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
wlr_scene_rect_set_color(w->border[i], bordercolor);
|
|
|
|
wlr_scene_rect_set_color(old_c->border[i], bordercolor);
|
|
|
|
|
|
|
|
|
|
|
|
client_activate_surface(old, 0);
|
|
|
|
client_activate_surface(old, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -1274,16 +1299,16 @@ focusstack(const Arg *arg)
|
|
|
|
if (arg->i > 0) {
|
|
|
|
if (arg->i > 0) {
|
|
|
|
wl_list_for_each(c, &sel->link, link) {
|
|
|
|
wl_list_for_each(c, &sel->link, link) {
|
|
|
|
if (&c->link == &clients)
|
|
|
|
if (&c->link == &clients)
|
|
|
|
continue; /* wrap past the sentinel node */
|
|
|
|
continue; /* wrap past the sentinel node */
|
|
|
|
if (VISIBLEON(c, selmon))
|
|
|
|
if (VISIBLEON(c, selmon))
|
|
|
|
break; /* found it */
|
|
|
|
break; /* found it */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
wl_list_for_each_reverse(c, &sel->link, link) {
|
|
|
|
wl_list_for_each_reverse(c, &sel->link, link) {
|
|
|
|
if (&c->link == &clients)
|
|
|
|
if (&c->link == &clients)
|
|
|
|
continue; /* wrap past the sentinel node */
|
|
|
|
continue; /* wrap past the sentinel node */
|
|
|
|
if (VISIBLEON(c, selmon))
|
|
|
|
if (VISIBLEON(c, selmon))
|
|
|
|
break; /* found it */
|
|
|
|
break; /* found it */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* If only one client is visible on selmon, then c == sel */
|
|
|
|
/* If only one client is visible on selmon, then c == sel */
|
|
|
@@ -1396,6 +1421,17 @@ keypress(struct wl_listener *listener, void *data)
|
|
|
|
for (i = 0; i < nsyms; i++)
|
|
|
|
for (i = 0; i < nsyms; i++)
|
|
|
|
handled = keybinding(mods, syms[i]) || handled;
|
|
|
|
handled = keybinding(mods, syms[i]) || handled;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (handled && kb->wlr_keyboard->repeat_info.delay > 0) {
|
|
|
|
|
|
|
|
kb->mods = mods;
|
|
|
|
|
|
|
|
kb->keysyms = syms;
|
|
|
|
|
|
|
|
kb->nsyms = nsyms;
|
|
|
|
|
|
|
|
wl_event_source_timer_update(kb->key_repeat_source,
|
|
|
|
|
|
|
|
kb->wlr_keyboard->repeat_info.delay);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
kb->nsyms = 0;
|
|
|
|
|
|
|
|
wl_event_source_timer_update(kb->key_repeat_source, 0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!handled) {
|
|
|
|
if (!handled) {
|
|
|
|
/* Pass unhandled keycodes along to the client. */
|
|
|
|
/* Pass unhandled keycodes along to the client. */
|
|
|
|
wlr_seat_set_keyboard(seat, kb->wlr_keyboard);
|
|
|
|
wlr_seat_set_keyboard(seat, kb->wlr_keyboard);
|
|
|
@@ -1422,6 +1458,22 @@ keypressmod(struct wl_listener *listener, void *data)
|
|
|
|
&kb->wlr_keyboard->modifiers);
|
|
|
|
&kb->wlr_keyboard->modifiers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
|
|
|
keyrepeat(void *data)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Keyboard *kb = data;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (kb->nsyms && kb->wlr_keyboard->repeat_info.rate > 0) {
|
|
|
|
|
|
|
|
wl_event_source_timer_update(kb->key_repeat_source,
|
|
|
|
|
|
|
|
1000 / kb->wlr_keyboard->repeat_info.rate);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < kb->nsyms; i++)
|
|
|
|
|
|
|
|
keybinding(kb->mods, kb->keysyms[i]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
void
|
|
|
|
killclient(const Arg *arg)
|
|
|
|
killclient(const Arg *arg)
|
|
|
|
{
|
|
|
|
{
|
|
|
@@ -1485,7 +1537,6 @@ mapnotify(struct wl_listener *listener, void *data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
c->scene->node.data = c->scene_surface->node.data = c;
|
|
|
|
c->scene->node.data = c->scene_surface->node.data = c;
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
|
|
|
|
/* Handle unmanaged clients first so we can return prior create borders */
|
|
|
|
/* Handle unmanaged clients first so we can return prior create borders */
|
|
|
|
if (client_is_unmanaged(c)) {
|
|
|
|
if (client_is_unmanaged(c)) {
|
|
|
|
client_get_geometry(c, &c->geom);
|
|
|
|
client_get_geometry(c, &c->geom);
|
|
|
@@ -1499,7 +1550,6 @@ mapnotify(struct wl_listener *listener, void *data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto unset_fullscreen;
|
|
|
|
goto unset_fullscreen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
c->border[i] = wlr_scene_rect_create(c->scene, 0, 0, bordercolor);
|
|
|
|
c->border[i] = wlr_scene_rect_create(c->scene, 0, 0, bordercolor);
|
|
|
@@ -1553,12 +1603,16 @@ void
|
|
|
|
monocle(Monitor *m)
|
|
|
|
monocle(Monitor *m)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Client *c;
|
|
|
|
Client *c;
|
|
|
|
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
|
|
|
|
wl_list_for_each(c, &clients, link) {
|
|
|
|
wl_list_for_each(c, &clients, link) {
|
|
|
|
if (!VISIBLEON(c, m) || c->isfloating || c->isfullscreen)
|
|
|
|
if (!VISIBLEON(c, m) || c->isfloating || c->isfullscreen)
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
|
resize(c, m->w, 0);
|
|
|
|
resize(c, m->w, 0);
|
|
|
|
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n)
|
|
|
|
|
|
|
|
snprintf(m->ltsymbol, LENGTH(m->ltsymbol), "[%d]", n);
|
|
|
|
if ((c = focustop(m)))
|
|
|
|
if ((c = focustop(m)))
|
|
|
|
wlr_scene_node_raise_to_top(&c->scene->node);
|
|
|
|
wlr_scene_node_raise_to_top(&c->scene->node);
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -1690,7 +1744,7 @@ outputmgrapplyortest(struct wlr_output_configuration_v1 *config, int test)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Called when a client such as wlr-randr requests a change in output
|
|
|
|
* Called when a client such as wlr-randr requests a change in output
|
|
|
|
* configuration. This is only one way that the layout can be changed,
|
|
|
|
* configuration. This is only one way that the layout can be changed,
|
|
|
|
* so any Monitor information should be updated by updatemons() after an
|
|
|
|
* so any Monitor information should be updated by updatemons() after an
|
|
|
|
* output_layout.change event, not here.
|
|
|
|
* output_layout.change event, not here.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
@@ -1781,7 +1835,8 @@ printstatus(void)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Monitor *m = NULL;
|
|
|
|
Monitor *m = NULL;
|
|
|
|
Client *c;
|
|
|
|
Client *c;
|
|
|
|
unsigned int occ, urg, sel;
|
|
|
|
uint32_t occ, urg, sel;
|
|
|
|
|
|
|
|
const char *appid, *title;
|
|
|
|
|
|
|
|
|
|
|
|
wl_list_for_each(m, &mons, link) {
|
|
|
|
wl_list_for_each(m, &mons, link) {
|
|
|
|
occ = urg = 0;
|
|
|
|
occ = urg = 0;
|
|
|
@@ -1793,12 +1848,16 @@ printstatus(void)
|
|
|
|
urg |= c->tags;
|
|
|
|
urg |= c->tags;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((c = focustop(m))) {
|
|
|
|
if ((c = focustop(m))) {
|
|
|
|
printf("%s title %s\n", m->wlr_output->name, client_get_title(c));
|
|
|
|
title = client_get_title(c);
|
|
|
|
|
|
|
|
appid = client_get_appid(c);
|
|
|
|
|
|
|
|
printf("%s title %s\n", m->wlr_output->name, title ? title : broken);
|
|
|
|
|
|
|
|
printf("%s appid %s\n", m->wlr_output->name, appid ? appid : broken);
|
|
|
|
printf("%s fullscreen %u\n", m->wlr_output->name, c->isfullscreen);
|
|
|
|
printf("%s fullscreen %u\n", m->wlr_output->name, c->isfullscreen);
|
|
|
|
printf("%s floating %u\n", m->wlr_output->name, c->isfloating);
|
|
|
|
printf("%s floating %u\n", m->wlr_output->name, c->isfloating);
|
|
|
|
sel = c->tags;
|
|
|
|
sel = c->tags;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
printf("%s title \n", m->wlr_output->name);
|
|
|
|
printf("%s title \n", m->wlr_output->name);
|
|
|
|
|
|
|
|
printf("%s appid \n", m->wlr_output->name);
|
|
|
|
printf("%s fullscreen \n", m->wlr_output->name);
|
|
|
|
printf("%s fullscreen \n", m->wlr_output->name);
|
|
|
|
printf("%s floating \n", m->wlr_output->name);
|
|
|
|
printf("%s floating \n", m->wlr_output->name);
|
|
|
|
sel = 0;
|
|
|
|
sel = 0;
|
|
|
@@ -1807,7 +1866,7 @@ printstatus(void)
|
|
|
|
printf("%s selmon %u\n", m->wlr_output->name, m == selmon);
|
|
|
|
printf("%s selmon %u\n", m->wlr_output->name, m == selmon);
|
|
|
|
printf("%s tags %u %u %u %u\n", m->wlr_output->name, occ, m->tagset[m->seltags],
|
|
|
|
printf("%s tags %u %u %u %u\n", m->wlr_output->name, occ, m->tagset[m->seltags],
|
|
|
|
sel, urg);
|
|
|
|
sel, urg);
|
|
|
|
printf("%s layout %s\n", m->wlr_output->name, m->lt[m->sellt]->symbol);
|
|
|
|
printf("%s layout %s\n", m->wlr_output->name, m->ltsymbol);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -1836,10 +1895,10 @@ rendermon(struct wl_listener *listener, void *data)
|
|
|
|
/* Render if no XDG clients have an outstanding resize and are visible on
|
|
|
|
/* Render if no XDG clients have an outstanding resize and are visible on
|
|
|
|
* this monitor. */
|
|
|
|
* this monitor. */
|
|
|
|
wl_list_for_each(c, &clients, link)
|
|
|
|
wl_list_for_each(c, &clients, link)
|
|
|
|
if (client_is_rendered_on_mon(c, m) && (!c->isfloating && c->resize) && !client_is_stopped(c))
|
|
|
|
if (c->resize && !c->isfloating && client_is_rendered_on_mon(c, m) && !client_is_stopped(c))
|
|
|
|
goto skip;
|
|
|
|
goto skip;
|
|
|
|
if (!wlr_scene_output_commit(m->scene_output))
|
|
|
|
wlr_scene_output_commit(m->scene_output);
|
|
|
|
return;
|
|
|
|
|
|
|
|
skip:
|
|
|
|
skip:
|
|
|
|
/* Let clients know a frame has been rendered */
|
|
|
|
/* Let clients know a frame has been rendered */
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
|
@@ -1877,7 +1936,7 @@ resize(Client *c, struct wlr_box geo, int interact)
|
|
|
|
wlr_scene_node_set_position(&c->border[2]->node, 0, c->bw);
|
|
|
|
wlr_scene_node_set_position(&c->border[2]->node, 0, c->bw);
|
|
|
|
wlr_scene_node_set_position(&c->border[3]->node, c->geom.width - c->bw, c->bw);
|
|
|
|
wlr_scene_node_set_position(&c->border[3]->node, c->geom.width - c->bw, c->bw);
|
|
|
|
|
|
|
|
|
|
|
|
/* wlroots makes this a no-op if size hasn't changed */
|
|
|
|
/* this is a no-op if size hasn't changed */
|
|
|
|
c->resize = client_set_size(c, c->geom.width - 2 * c->bw,
|
|
|
|
c->resize = client_set_size(c, c->geom.width - 2 * c->bw,
|
|
|
|
c->geom.height - 2 * c->bw);
|
|
|
|
c->geom.height - 2 * c->bw);
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -1887,6 +1946,8 @@ run(char *startup_cmd)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/* Add a Unix socket to the Wayland display. */
|
|
|
|
/* Add a Unix socket to the Wayland display. */
|
|
|
|
const char *socket = wl_display_add_socket_auto(dpy);
|
|
|
|
const char *socket = wl_display_add_socket_auto(dpy);
|
|
|
|
|
|
|
|
struct sigaction sa = {.sa_flags = SA_RESTART, .sa_handler = SIG_IGN};
|
|
|
|
|
|
|
|
sigemptyset(&sa.sa_mask);
|
|
|
|
if (!socket)
|
|
|
|
if (!socket)
|
|
|
|
die("startup: display_add_socket_auto");
|
|
|
|
die("startup: display_add_socket_auto");
|
|
|
|
setenv("WAYLAND_DISPLAY", socket, 1);
|
|
|
|
setenv("WAYLAND_DISPLAY", socket, 1);
|
|
|
@@ -1915,7 +1976,7 @@ run(char *startup_cmd)
|
|
|
|
close(piperw[0]);
|
|
|
|
close(piperw[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* If nobody is reading the status output, don't terminate */
|
|
|
|
/* If nobody is reading the status output, don't terminate */
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
sigaction(SIGPIPE, &sa, NULL);
|
|
|
|
printstatus();
|
|
|
|
printstatus();
|
|
|
|
|
|
|
|
|
|
|
|
/* At this point the outputs are initialized, choose initial selmon based on
|
|
|
|
/* At this point the outputs are initialized, choose initial selmon based on
|
|
|
@@ -1923,7 +1984,7 @@ run(char *startup_cmd)
|
|
|
|
selmon = xytomon(cursor->x, cursor->y);
|
|
|
|
selmon = xytomon(cursor->x, cursor->y);
|
|
|
|
|
|
|
|
|
|
|
|
/* TODO hack to get cursor to display in its initial location (100, 100)
|
|
|
|
/* TODO hack to get cursor to display in its initial location (100, 100)
|
|
|
|
* instead of (0, 0) and then jumping. still may not be fully
|
|
|
|
* instead of (0, 0) and then jumping. still may not be fully
|
|
|
|
* initialized, as the image/coordinates are not transformed for the
|
|
|
|
* initialized, as the image/coordinates are not transformed for the
|
|
|
|
* monitor when displayed here */
|
|
|
|
* monitor when displayed here */
|
|
|
|
wlr_cursor_warp_closest(cursor, NULL, cursor->x, cursor->y);
|
|
|
|
wlr_cursor_warp_closest(cursor, NULL, cursor->x, cursor->y);
|
|
|
@@ -1998,7 +2059,7 @@ setlayout(const Arg *arg)
|
|
|
|
selmon->sellt ^= 1;
|
|
|
|
selmon->sellt ^= 1;
|
|
|
|
if (arg && arg->v)
|
|
|
|
if (arg && arg->v)
|
|
|
|
selmon->lt[selmon->sellt] = (Layout *)arg->v;
|
|
|
|
selmon->lt[selmon->sellt] = (Layout *)arg->v;
|
|
|
|
/* TODO change layout symbol? */
|
|
|
|
strncpy(selmon->ltsymbol, selmon->lt[selmon->sellt]->symbol, LENGTH(selmon->ltsymbol));
|
|
|
|
arrange(selmon);
|
|
|
|
arrange(selmon);
|
|
|
|
printstatus();
|
|
|
|
printstatus();
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -2019,7 +2080,7 @@ setmfact(const Arg *arg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
void
|
|
|
|
setmon(Client *c, Monitor *m, unsigned int newtags)
|
|
|
|
setmon(Client *c, Monitor *m, uint32_t newtags)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Monitor *oldmon = c->mon;
|
|
|
|
Monitor *oldmon = c->mon;
|
|
|
|
|
|
|
|
|
|
|
@@ -2068,19 +2129,21 @@ setsel(struct wl_listener *listener, void *data)
|
|
|
|
void
|
|
|
|
void
|
|
|
|
setup(void)
|
|
|
|
setup(void)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
int layer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Set up signal handlers */
|
|
|
|
|
|
|
|
struct sigaction sa = {.sa_flags = SA_RESTART, .sa_handler = sigchld};
|
|
|
|
|
|
|
|
sigemptyset(&sa.sa_mask);
|
|
|
|
|
|
|
|
sigaction(SIGCHLD, &sa, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sa.sa_handler = quitsignal;
|
|
|
|
|
|
|
|
sigaction(SIGINT, &sa, NULL);
|
|
|
|
|
|
|
|
sigaction(SIGTERM, &sa, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
/* The Wayland display is managed by libwayland. It handles accepting
|
|
|
|
/* The Wayland display is managed by libwayland. It handles accepting
|
|
|
|
* clients from the Unix socket, manging Wayland globals, and so on. */
|
|
|
|
* clients from the Unix socket, manging Wayland globals, and so on. */
|
|
|
|
dpy = wl_display_create();
|
|
|
|
dpy = wl_display_create();
|
|
|
|
|
|
|
|
|
|
|
|
/* Set up signal handlers */
|
|
|
|
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
|
|
|
|
sigchld(0);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
signal(SIGCHLD, SIG_IGN);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
signal(SIGINT, quitsignal);
|
|
|
|
|
|
|
|
signal(SIGTERM, quitsignal);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The backend is a wlroots feature which abstracts the underlying input and
|
|
|
|
/* The backend is a wlroots feature which abstracts the underlying input and
|
|
|
|
* output hardware. The autocreate option will choose the most suitable
|
|
|
|
* output hardware. The autocreate option will choose the most suitable
|
|
|
|
* backend based on the current environment, such as opening an X11 window
|
|
|
|
* backend based on the current environment, such as opening an X11 window
|
|
|
@@ -2094,15 +2157,8 @@ setup(void)
|
|
|
|
|
|
|
|
|
|
|
|
/* Initialize the scene graph used to lay out windows */
|
|
|
|
/* Initialize the scene graph used to lay out windows */
|
|
|
|
scene = wlr_scene_create();
|
|
|
|
scene = wlr_scene_create();
|
|
|
|
layers[LyrBg] = wlr_scene_tree_create(&scene->tree);
|
|
|
|
for (layer = 0; layer < NUM_LAYERS; layer++)
|
|
|
|
layers[LyrBottom] = wlr_scene_tree_create(&scene->tree);
|
|
|
|
layers[layer] = wlr_scene_tree_create(&scene->tree);
|
|
|
|
layers[LyrTile] = wlr_scene_tree_create(&scene->tree);
|
|
|
|
|
|
|
|
layers[LyrFloat] = wlr_scene_tree_create(&scene->tree);
|
|
|
|
|
|
|
|
layers[LyrFS] = wlr_scene_tree_create(&scene->tree);
|
|
|
|
|
|
|
|
layers[LyrTop] = wlr_scene_tree_create(&scene->tree);
|
|
|
|
|
|
|
|
layers[LyrOverlay] = wlr_scene_tree_create(&scene->tree);
|
|
|
|
|
|
|
|
layers[LyrDragIcon] = wlr_scene_tree_create(&scene->tree);
|
|
|
|
|
|
|
|
layers[LyrBlock] = wlr_scene_tree_create(&scene->tree);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Create a renderer with the default implementation */
|
|
|
|
/* Create a renderer with the default implementation */
|
|
|
|
if (!(drw = wlr_renderer_autocreate(backend)))
|
|
|
|
if (!(drw = wlr_renderer_autocreate(backend)))
|
|
|
@@ -2193,6 +2249,7 @@ setup(void)
|
|
|
|
* images are available at all scale factors on the screen (necessary for
|
|
|
|
* images are available at all scale factors on the screen (necessary for
|
|
|
|
* HiDPI support). Scaled cursors will be loaded with each output. */
|
|
|
|
* HiDPI support). Scaled cursors will be loaded with each output. */
|
|
|
|
cursor_mgr = wlr_xcursor_manager_create(NULL, 24);
|
|
|
|
cursor_mgr = wlr_xcursor_manager_create(NULL, 24);
|
|
|
|
|
|
|
|
setenv("XCURSOR_SIZE", "24", 1);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* wlr_cursor *only* displays an image on screen. It does not move around
|
|
|
|
* wlr_cursor *only* displays an image on screen. It does not move around
|
|
|
@@ -2253,6 +2310,28 @@ setup(void)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
|
|
sigchld(int unused)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
|
|
|
|
siginfo_t in;
|
|
|
|
|
|
|
|
/* We should be able to remove this function in favor of a simple
|
|
|
|
|
|
|
|
* struct sigaction sa = {.sa_handler = SIG_IGN};
|
|
|
|
|
|
|
|
* sigaction(SIGCHLD, &sa, NULL);
|
|
|
|
|
|
|
|
* but the Xwayland implementation in wlroots currently prevents us from
|
|
|
|
|
|
|
|
* setting our own disposition for SIGCHLD.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* WNOWAIT leaves the child in a waitable state, in case this is the
|
|
|
|
|
|
|
|
* XWayland process
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
while (!waitid(P_ALL, 0, &in, WEXITED|WNOHANG|WNOWAIT) && in.si_pid
|
|
|
|
|
|
|
|
&& (!xwayland || in.si_pid != xwayland->server->pid))
|
|
|
|
|
|
|
|
waitpid(in.si_pid, NULL, 0);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
while (waitpid(-1, NULL, WNOHANG) > 0);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
void
|
|
|
|
spawn(const Arg *arg)
|
|
|
|
spawn(const Arg *arg)
|
|
|
|
{
|
|
|
|
{
|
|
|
@@ -2268,11 +2347,13 @@ void
|
|
|
|
startdrag(struct wl_listener *listener, void *data)
|
|
|
|
startdrag(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
struct wlr_drag *drag = data;
|
|
|
|
struct wlr_drag *drag = data;
|
|
|
|
|
|
|
|
struct wlr_scene_tree *icon;
|
|
|
|
|
|
|
|
|
|
|
|
if (!drag->icon)
|
|
|
|
if (!drag->icon)
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
drag->icon->data = wlr_scene_subsurface_tree_create(layers[LyrDragIcon], drag->icon->surface);
|
|
|
|
drag->icon->data = icon = wlr_scene_subsurface_tree_create(&scene->tree, drag->icon->surface);
|
|
|
|
|
|
|
|
wlr_scene_node_place_below(&icon->node, &layers[LyrBlock]->node);
|
|
|
|
motionnotify(0);
|
|
|
|
motionnotify(0);
|
|
|
|
wl_signal_add(&drag->icon->events.destroy, &drag_icon_destroy);
|
|
|
|
wl_signal_add(&drag->icon->events.destroy, &drag_icon_destroy);
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -2350,7 +2431,7 @@ togglefullscreen(const Arg *arg)
|
|
|
|
void
|
|
|
|
void
|
|
|
|
toggletag(const Arg *arg)
|
|
|
|
toggletag(const Arg *arg)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
unsigned int newtags;
|
|
|
|
uint32_t newtags;
|
|
|
|
Client *sel = focustop(selmon);
|
|
|
|
Client *sel = focustop(selmon);
|
|
|
|
if (!sel)
|
|
|
|
if (!sel)
|
|
|
|
return;
|
|
|
|
return;
|
|
|
@@ -2366,7 +2447,7 @@ toggletag(const Arg *arg)
|
|
|
|
void
|
|
|
|
void
|
|
|
|
toggleview(const Arg *arg)
|
|
|
|
toggleview(const Arg *arg)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
unsigned int newtagset = selmon ? selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK) : 0;
|
|
|
|
uint32_t newtagset = selmon ? selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK) : 0;
|
|
|
|
|
|
|
|
|
|
|
|
if (newtagset) {
|
|
|
|
if (newtagset) {
|
|
|
|
selmon->tagset[selmon->seltags] = newtagset;
|
|
|
|
selmon->tagset[selmon->seltags] = newtagset;
|
|
|
@@ -2433,7 +2514,7 @@ updatemons(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Called whenever the output layout changes: adding or removing a
|
|
|
|
* Called whenever the output layout changes: adding or removing a
|
|
|
|
* monitor, changing an output's mode or position, etc. This is where
|
|
|
|
* monitor, changing an output's mode or position, etc. This is where
|
|
|
|
* the change officially happens and we update geometry, window
|
|
|
|
* the change officially happens and we update geometry, window
|
|
|
|
* positions, focus, and the stored configuration in wlroots'
|
|
|
|
* positions, focus, and the stored configuration in wlroots'
|
|
|
|
* output-manager implementation.
|
|
|
|
* output-manager implementation.
|
|
|
@@ -2461,9 +2542,14 @@ updatemons(struct wl_listener *listener, void *data)
|
|
|
|
if (m->wlr_output->enabled
|
|
|
|
if (m->wlr_output->enabled
|
|
|
|
&& !wlr_output_layout_get(output_layout, m->wlr_output))
|
|
|
|
&& !wlr_output_layout_get(output_layout, m->wlr_output))
|
|
|
|
wlr_output_layout_add_auto(output_layout, m->wlr_output);
|
|
|
|
wlr_output_layout_add_auto(output_layout, m->wlr_output);
|
|
|
|
|
|
|
|
|
|
|
|
/* Now that we update the output layout we can get its box */
|
|
|
|
/* Now that we update the output layout we can get its box */
|
|
|
|
wlr_output_layout_get_box(output_layout, NULL, &sgeom);
|
|
|
|
wlr_output_layout_get_box(output_layout, NULL, &sgeom);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Make sure the clients are hidden when dwl is locked */
|
|
|
|
|
|
|
|
wlr_scene_node_set_position(&locked_bg->node, sgeom.x, sgeom.y);
|
|
|
|
wlr_scene_rect_set_size(locked_bg, sgeom.width, sgeom.height);
|
|
|
|
wlr_scene_rect_set_size(locked_bg, sgeom.width, sgeom.height);
|
|
|
|
|
|
|
|
|
|
|
|
wl_list_for_each(m, &mons, link) {
|
|
|
|
wl_list_for_each(m, &mons, link) {
|
|
|
|
if (!m->wlr_output->enabled)
|
|
|
|
if (!m->wlr_output->enabled)
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
@@ -2473,10 +2559,6 @@ updatemons(struct wl_listener *listener, void *data)
|
|
|
|
wlr_output_layout_get_box(output_layout, m->wlr_output, &(m->m));
|
|
|
|
wlr_output_layout_get_box(output_layout, m->wlr_output, &(m->m));
|
|
|
|
wlr_output_layout_get_box(output_layout, m->wlr_output, &(m->w));
|
|
|
|
wlr_output_layout_get_box(output_layout, m->wlr_output, &(m->w));
|
|
|
|
wlr_scene_output_set_position(m->scene_output, m->m.x, m->m.y);
|
|
|
|
wlr_scene_output_set_position(m->scene_output, m->m.x, m->m.y);
|
|
|
|
/* Calculate the effective monitor geometry to use for clients */
|
|
|
|
|
|
|
|
arrangelayers(m);
|
|
|
|
|
|
|
|
/* Don't move clients to the left output when plugging monitors */
|
|
|
|
|
|
|
|
arrange(m);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wlr_scene_node_set_position(&m->fullscreen_bg->node, m->m.x, m->m.y);
|
|
|
|
wlr_scene_node_set_position(&m->fullscreen_bg->node, m->m.x, m->m.y);
|
|
|
|
wlr_scene_rect_set_size(m->fullscreen_bg, m->m.width, m->m.height);
|
|
|
|
wlr_scene_rect_set_size(m->fullscreen_bg, m->m.width, m->m.height);
|
|
|
@@ -2488,6 +2570,11 @@ updatemons(struct wl_listener *listener, void *data)
|
|
|
|
m->m.height);
|
|
|
|
m->m.height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Calculate the effective monitor geometry to use for clients */
|
|
|
|
|
|
|
|
arrangelayers(m);
|
|
|
|
|
|
|
|
/* Don't move clients to the left output when plugging monitors */
|
|
|
|
|
|
|
|
arrange(m);
|
|
|
|
|
|
|
|
|
|
|
|
config_head->state.enabled = 1;
|
|
|
|
config_head->state.enabled = 1;
|
|
|
|
config_head->state.mode = m->wlr_output->current_mode;
|
|
|
|
config_head->state.mode = m->wlr_output->current_mode;
|
|
|
|
config_head->state.x = m->m.x;
|
|
|
|
config_head->state.x = m->m.x;
|
|
|
@@ -2498,9 +2585,12 @@ updatemons(struct wl_listener *listener, void *data)
|
|
|
|
wl_list_for_each(c, &clients, link)
|
|
|
|
wl_list_for_each(c, &clients, link)
|
|
|
|
if (!c->mon && client_is_mapped(c))
|
|
|
|
if (!c->mon && client_is_mapped(c))
|
|
|
|
setmon(c, selmon, c->tags);
|
|
|
|
setmon(c, selmon, c->tags);
|
|
|
|
if (selmon->lock_surface)
|
|
|
|
focusclient(focustop(selmon), 1);
|
|
|
|
|
|
|
|
if (selmon->lock_surface) {
|
|
|
|
client_notify_enter(selmon->lock_surface->surface,
|
|
|
|
client_notify_enter(selmon->lock_surface->surface,
|
|
|
|
wlr_seat_get_keyboard(seat));
|
|
|
|
wlr_seat_get_keyboard(seat));
|
|
|
|
|
|
|
|
client_activate_surface(selmon->lock_surface->surface, 1);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wlr_output_manager_v1_set_configuration(output_mgr, config);
|
|
|
|
wlr_output_manager_v1_set_configuration(output_mgr, config);
|
|
|
@@ -2519,8 +2609,8 @@ urgent(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
struct wlr_xdg_activation_v1_request_activate_event *event = data;
|
|
|
|
struct wlr_xdg_activation_v1_request_activate_event *event = data;
|
|
|
|
Client *c = NULL;
|
|
|
|
Client *c = NULL;
|
|
|
|
int type = toplevel_from_wlr_surface(event->surface, &c, NULL);
|
|
|
|
toplevel_from_wlr_surface(event->surface, &c, NULL);
|
|
|
|
if (type >= 0 && type != LayerShell && c != focustop(selmon)) {
|
|
|
|
if (c && c != focustop(selmon)) {
|
|
|
|
c->isurgent = 1;
|
|
|
|
c->isurgent = 1;
|
|
|
|
printstatus();
|
|
|
|
printstatus();
|
|
|
|
}
|
|
|
|
}
|
|
|
@@ -2561,24 +2651,22 @@ xytonode(double x, double y, struct wlr_surface **psurface,
|
|
|
|
struct wlr_surface *surface = NULL;
|
|
|
|
struct wlr_surface *surface = NULL;
|
|
|
|
Client *c = NULL;
|
|
|
|
Client *c = NULL;
|
|
|
|
LayerSurface *l = NULL;
|
|
|
|
LayerSurface *l = NULL;
|
|
|
|
const int *layer;
|
|
|
|
int layer;
|
|
|
|
int focus_order[] = { LyrBlock, LyrOverlay, LyrTop, LyrFS, LyrFloat, LyrTile, LyrBottom, LyrBg };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (layer = focus_order; layer < END(focus_order); layer++) {
|
|
|
|
for (layer = NUM_LAYERS - 1; !surface && layer >= 0; layer--) {
|
|
|
|
if ((node = wlr_scene_node_at(&layers[*layer]->node, x, y, nx, ny))) {
|
|
|
|
if (!(node = wlr_scene_node_at(&layers[layer]->node, x, y, nx, ny)))
|
|
|
|
if (node->type == WLR_SCENE_NODE_BUFFER)
|
|
|
|
continue;
|
|
|
|
surface = wlr_scene_surface_from_buffer(
|
|
|
|
|
|
|
|
wlr_scene_buffer_from_node(node))->surface;
|
|
|
|
if (node->type == WLR_SCENE_NODE_BUFFER)
|
|
|
|
/* Walk the tree to find a node that knows the client */
|
|
|
|
surface = wlr_scene_surface_from_buffer(
|
|
|
|
for (pnode = node; pnode && !c; pnode = &pnode->parent->node)
|
|
|
|
wlr_scene_buffer_from_node(node))->surface;
|
|
|
|
c = pnode->data;
|
|
|
|
/* Walk the tree to find a node that knows the client */
|
|
|
|
if (c && c->type == LayerShell) {
|
|
|
|
for (pnode = node; pnode && !c; pnode = &pnode->parent->node)
|
|
|
|
c = NULL;
|
|
|
|
c = pnode->data;
|
|
|
|
l = pnode->data;
|
|
|
|
if (c && c->type == LayerShell) {
|
|
|
|
}
|
|
|
|
c = NULL;
|
|
|
|
|
|
|
|
l = pnode->data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (surface)
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (psurface) *psurface = surface;
|
|
|
|
if (psurface) *psurface = surface;
|
|
|
@@ -2690,25 +2778,6 @@ sethints(struct wl_listener *listener, void *data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
|
|
sigchld(int unused)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
siginfo_t in;
|
|
|
|
|
|
|
|
/* We should be able to remove this function in favor of a simple
|
|
|
|
|
|
|
|
* signal(SIGCHLD, SIG_IGN);
|
|
|
|
|
|
|
|
* but the Xwayland implementation in wlroots currently prevents us from
|
|
|
|
|
|
|
|
* setting our own disposition for SIGCHLD.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (signal(SIGCHLD, sigchld) == SIG_ERR)
|
|
|
|
|
|
|
|
die("can't install SIGCHLD handler:");
|
|
|
|
|
|
|
|
/* WNOWAIT leaves the child in a waitable state, in case this is the
|
|
|
|
|
|
|
|
* XWayland process
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
while (!waitid(P_ALL, 0, &in, WEXITED|WNOHANG|WNOWAIT) && in.si_pid
|
|
|
|
|
|
|
|
&& (!xwayland || in.si_pid != xwayland->server->pid))
|
|
|
|
|
|
|
|
waitpid(in.si_pid, NULL, 0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
void
|
|
|
|
xwaylandready(struct wl_listener *listener, void *data)
|
|
|
|
xwaylandready(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
{
|
|
|
@@ -2720,7 +2789,7 @@ xwaylandready(struct wl_listener *listener, void *data)
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Collect atoms we are interested in. If getatom returns 0, we will
|
|
|
|
/* Collect atoms we are interested in. If getatom returns 0, we will
|
|
|
|
* not detect that window type. */
|
|
|
|
* not detect that window type. */
|
|
|
|
netatom[NetWMWindowTypeDialog] = getatom(xc, "_NET_WM_WINDOW_TYPE_DIALOG");
|
|
|
|
netatom[NetWMWindowTypeDialog] = getatom(xc, "_NET_WM_WINDOW_TYPE_DIALOG");
|
|
|
|
netatom[NetWMWindowTypeSplash] = getatom(xc, "_NET_WM_WINDOW_TYPE_SPLASH");
|
|
|
|
netatom[NetWMWindowTypeSplash] = getatom(xc, "_NET_WM_WINDOW_TYPE_SPLASH");
|
|
|
|