diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2020-08-02 18:40:33 -0500 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2020-08-02 18:40:33 -0500 |
commit | 7856cdc1bf1ed1af46032b40f169112467b58ab1 (patch) | |
tree | 783e5c374702972409f725af412f551c90dc37b2 /dwl.c | |
parent | da5deab08383a0f1904290bd24c5a453c7425f30 (diff) |
abc
Diffstat (limited to 'dwl.c')
-rw-r--r-- | dwl.c | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -177,6 +177,7 @@ static Monitor *dirtomon(int dir); static void focusclient(Client *old, Client *c, int lift); static void focusmon(const Arg *arg); static void focusstack(const Arg *arg); +static Client *focustop(Monitor *m); static Atom getatom(xcb_connection_t *xc, const char *name); static void getxdecomode(struct wl_listener *listener, void *data); static void incnmaster(const Arg *arg); @@ -185,7 +186,6 @@ static int keybinding(uint32_t mods, xkb_keysym_t sym); static void keypress(struct wl_listener *listener, void *data); static void keypressmod(struct wl_listener *listener, void *data); static void killclient(const Arg *arg); -static Client *focustop(Monitor *m); static void maprequest(struct wl_listener *listener, void *data); static void motionabsolute(struct wl_listener *listener, void *data); static void motionnotify(uint32_t time); @@ -747,6 +747,16 @@ focusstack(const Arg *arg) focusclient(sel, c, 1); } +Client * +focustop(Monitor *m) +{ + Client *c; + wl_list_for_each(c, &fstack, flink) + if (VISIBLEON(c, m)) + return c; + return NULL; +} + Atom getatom(xcb_connection_t *xc, const char *name) { @@ -888,16 +898,6 @@ killclient(const Arg *arg) wlr_xdg_toplevel_send_close(sel->surface.xdg); } -Client * -focustop(Monitor *m) -{ - Client *c; - wl_list_for_each(c, &fstack, flink) - if (VISIBLEON(c, m)) - return c; - return NULL; -} - void maprequest(struct wl_listener *listener, void *data) { |