summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2020-08-02 18:40:33 -0500
committerDevin J. Pohly <djpohly@gmail.com>2020-08-02 18:40:33 -0500
commit7856cdc1bf1ed1af46032b40f169112467b58ab1 (patch)
tree783e5c374702972409f725af412f551c90dc37b2
parentda5deab08383a0f1904290bd24c5a453c7425f30 (diff)
abc
-rw-r--r--dwl.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/dwl.c b/dwl.c
index 58d343c..1d1b4de 100644
--- a/dwl.c
+++ b/dwl.c
@@ -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)
{