diff options
Diffstat (limited to 'dwl.c')
-rw-r--r-- | dwl.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -394,6 +394,7 @@ static void startdrag(struct wl_listener *listener, void *data); static int statusin(int fd, unsigned int mask, void *data); static void tag(const Arg *arg); static void tagmon(const Arg *arg); +static void tagandfocusmon(const Arg *arg); static void tile(Monitor *m); static void togglebar(const Arg *arg); static void togglefloating(const Arg *arg); @@ -3196,6 +3197,13 @@ tagmon(const Arg *arg) } void +tagandfocusmon(const Arg *arg) +{ + tagmon(arg); + focusmon(arg); +} + +void tile(Monitor *m) { unsigned int mw, my, ty; |