2 * Copyright (c) 2009-2012 Marco Peereboom <marco@peereboom.us>
3 * Copyright (c) 2009-2011 Ryan McBride <mcbride@countersiege.com>
4 * Copyright (c) 2009 Darrin Chandler <dwchandler@stilyagin.com>
5 * Copyright (c) 2009 Pierre-Yves Ritschard <pyr@spootnik.org>
6 * Copyright (c) 2010 Tuukka Kataja <stuge@xor.fi>
7 * Copyright (c) 2011 Jason L. Wright <jason@thought.net>
8 * Copyright (c) 2011-2012 Reginald Kennedy <rk@rejii.com>
10 * Permission to use, copy, modify, and distribute this software for any
11 * purpose with or without fee is hereby granted, provided that the above
12 * copyright notice and this permission notice appear in all copies.
14 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
15 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
16 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
17 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
18 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
19 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
20 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 * Much code and ideas taken from dwm under the following license:
24 * MIT/X Consortium License
26 * 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
27 * 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
28 * 2006-2007 Jukka Salmi <jukka at salmi dot ch>
29 * 2007 Premysl Hruby <dfenze at gmail dot com>
30 * 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
31 * 2007 Christof Musik <christof at sendfax dot de>
32 * 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
33 * 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
34 * 2008 Martin Hurton <martin dot hurton at gmail dot com>
36 * Permission is hereby granted, free of charge, to any person obtaining a
37 * copy of this software and associated documentation files (the "Software"),
38 * to deal in the Software without restriction, including without limitation
39 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
40 * and/or sell copies of the Software, and to permit persons to whom the
41 * Software is furnished to do so, subject to the following conditions:
43 * The above copyright notice and this permission notice shall be included in
44 * all copies or substantial portions of the Software.
46 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
47 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
48 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
49 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
50 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
51 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
52 * DEALINGS IN THE SOFTWARE.
70 #include <sys/types.h>
74 #include <sys/queue.h>
75 #include <sys/param.h>
76 #include <sys/select.h>
78 #include <X11/cursorfont.h>
79 #include <X11/keysym.h>
80 #include <X11/Xatom.h>
82 #include <X11/Xproto.h>
83 #include <X11/Xutil.h>
84 #include <X11/extensions/Xrandr.h>
85 #include <X11/extensions/XTest.h>
93 #ifdef SCROTWM_BUILDSTR
94 static const char *buildstr = SCROTWM_BUILDSTR;
96 static const char *buildstr = SCROTWM_VERSION;
100 # error XRandR versions less than 1.0 are not supported
105 #define SWM_XRR_HAS_CRTC
109 /*#define SWM_DEBUG*/
111 #define DPRINTF(x...) do { if (swm_debug) fprintf(stderr, x); } while (0)
112 #define DNPRINTF(n,x...) do { if (swm_debug & n) fprintf(stderr, x); } while (0)
113 #define SWM_D_MISC 0x0001
114 #define SWM_D_EVENT 0x0002
115 #define SWM_D_WS 0x0004
116 #define SWM_D_FOCUS 0x0008
117 #define SWM_D_MOVE 0x0010
118 #define SWM_D_STACK 0x0020
119 #define SWM_D_MOUSE 0x0040
120 #define SWM_D_PROP 0x0080
121 #define SWM_D_CLASS 0x0100
122 #define SWM_D_KEY 0x0200
123 #define SWM_D_QUIRK 0x0400
124 #define SWM_D_SPAWN 0x0800
125 #define SWM_D_EVENTQ 0x1000
126 #define SWM_D_CONF 0x2000
127 #define SWM_D_BAR 0x4000
129 u_int32_t swm_debug = 0
147 #define DPRINTF(x...)
148 #define DNPRINTF(n,x...)
151 #define LENGTH(x) (sizeof x / sizeof x[0])
152 #define MODKEY Mod1Mask
153 #define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
154 #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
155 #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
156 #define SWM_PROPLEN (16)
157 #define SWM_FUNCNAME_LEN (32)
158 #define SWM_KEYS_LEN (255)
159 #define SWM_QUIRK_LEN (64)
160 #define X(r) (r)->g.x
161 #define Y(r) (r)->g.y
162 #define WIDTH(r) (r)->g.w
163 #define HEIGHT(r) (r)->g.h
164 #define SH_MIN(w) (w)->sh_mask & PMinSize
165 #define SH_MIN_W(w) (w)->sh.min_width
166 #define SH_MIN_H(w) (w)->sh.min_height
167 #define SH_MAX(w) (w)->sh_mask & PMaxSize
168 #define SH_MAX_W(w) (w)->sh.max_width
169 #define SH_MAX_H(w) (w)->sh.max_height
170 #define SH_INC(w) (w)->sh_mask & PResizeInc
171 #define SH_INC_W(w) (w)->sh.width_inc
172 #define SH_INC_H(w) (w)->sh.height_inc
173 #define SWM_MAX_FONT_STEPS (3)
174 #define WINID(w) ((w) ? (w)->id : 0)
175 #define YESNO(x) ((x) ? "yes" : "no")
177 #define SWM_FOCUS_DEFAULT (0)
178 #define SWM_FOCUS_SYNERGY (1)
179 #define SWM_FOCUS_FOLLOW (2)
181 #define SWM_CONF_DEFAULT (0)
182 #define SWM_CONF_KEYMAPPING (1)
185 #define SWM_LIB "/usr/local/lib/libswmhack.so"
198 volatile sig_atomic_t running = 1;
199 volatile sig_atomic_t restart_wm = 0;
201 int last_focus_event = FocusOut;
202 int (*xerrorxlib)(Display *, XErrorEvent *);
206 int xrandr_eventbase;
207 unsigned int numlockmask = 0;
211 int cycle_visible = 0;
213 int font_adjusted = 0;
214 unsigned int mod_key = MODKEY;
217 struct swm_region *search_r;
218 int select_list_pipe[2];
219 int select_resp_pipe[2];
221 volatile sig_atomic_t search_resp;
222 int search_resp_action;
224 struct search_window {
225 TAILQ_ENTRY(search_window) entry;
231 TAILQ_HEAD(search_winlist, search_window);
233 struct search_winlist search_wl;
238 SWM_SEARCH_UNICONIFY,
239 SWM_SEARCH_NAME_WORKSPACE,
240 SWM_SEARCH_SEARCH_WORKSPACE,
241 SWM_SEARCH_SEARCH_WINDOW
245 double dialog_ratio = 0.6;
247 #define SWM_BAR_MAX (256)
248 #define SWM_BAR_JUSTIFY_LEFT (0)
249 #define SWM_BAR_JUSTIFY_CENTER (1)
250 #define SWM_BAR_JUSTIFY_RIGHT (2)
251 #define SWM_BAR_OFFSET (4)
252 #define SWM_BAR_FONTS "-*-terminus-medium-*-*-*-*-*-*-*-*-*-*-*," \
253 "-*-profont-*-*-*-*-*-*-*-*-*-*-*-*," \
254 "-*-times-medium-r-*-*-*-*-*-*-*-*-*-*," \
255 "-misc-fixed-medium-r-*-*-*-*-*-*-*-*-*-*"
257 #ifdef X_HAVE_UTF8_STRING
258 #define DRAWSTRING(x...) Xutf8DrawString(x)
260 #define DRAWSTRING(x...) XmbDrawString(x)
263 char *bar_argv[] = { NULL, NULL };
265 unsigned char bar_ext[SWM_BAR_MAX];
266 char bar_vertext[SWM_BAR_MAX];
268 sig_atomic_t bar_alarm = 0;
271 int bar_border_width = 1;
272 int bar_at_bottom = 0;
274 int bar_extra_running = 0;
277 int bar_justify = SWM_BAR_JUSTIFY_LEFT;
278 int stack_enabled = 1;
279 int clock_enabled = 1;
280 int urgent_enabled = 0;
281 char *clock_format = NULL;
282 int title_name_enabled = 0;
283 int title_class_enabled = 0;
284 int window_name_enabled = 0;
285 int focus_mode = SWM_FOCUS_DEFAULT;
286 int disable_border = 0;
287 int border_width = 1;
288 int verbose_layout = 0;
291 XFontSetExtents *bar_fs_extents;
293 char *spawn_term[] = { NULL, NULL }; /* XXX fully dynamic */
296 #define SWM_MENU_FN (2)
297 #define SWM_MENU_NB (4)
298 #define SWM_MENU_NF (6)
299 #define SWM_MENU_SB (8)
300 #define SWM_MENU_SF (10)
302 /* layout manager data */
303 struct swm_geometry {
313 /* virtual "screens" */
315 TAILQ_ENTRY(swm_region) entry;
316 struct swm_geometry g;
317 struct workspace *ws; /* current workspace on this region */
318 struct workspace *ws_prior; /* prior workspace on this region */
319 struct swm_screen *s; /* screen idx */
322 TAILQ_HEAD(swm_region_list, swm_region);
325 TAILQ_ENTRY(ws_win) entry;
328 struct ws_win *child_trans; /* transient child window */
329 struct swm_geometry g; /* current geometry */
330 struct swm_geometry g_float; /* geometry when floating */
331 struct swm_geometry rg_float; /* region geom when floating */
332 int g_floatvalid; /* g_float geometry validity */
333 int floatmaxed; /* whether maxed by max_stack */
337 unsigned int ewmh_flags;
338 int font_size_boundary[SWM_MAX_FONT_STEPS];
344 unsigned long quirks;
345 struct workspace *ws; /* always valid */
346 struct swm_screen *s; /* always valid, never changes */
347 XWindowAttributes wa;
353 TAILQ_HEAD(ws_win_list, ws_win);
357 TAILQ_ENTRY(pid_e) entry;
361 TAILQ_HEAD(pid_list, pid_e);
362 struct pid_list pidlist = TAILQ_HEAD_INITIALIZER(pidlist);
364 /* layout handlers */
366 void vertical_config(struct workspace *, int);
367 void vertical_stack(struct workspace *, struct swm_geometry *);
368 void horizontal_config(struct workspace *, int);
369 void horizontal_stack(struct workspace *, struct swm_geometry *);
370 void max_stack(struct workspace *, struct swm_geometry *);
371 void plain_stacker(struct workspace *);
372 void fancy_stacker(struct workspace *);
374 struct ws_win *find_window(Window);
376 void grabbuttons(struct ws_win *, int);
377 void new_region(struct swm_screen *, int, int, int, int);
378 void unmanage_window(struct ws_win *);
379 long getstate(Window);
381 int conf_load(char *, int);
384 void (*l_stack)(struct workspace *, struct swm_geometry *);
385 void (*l_config)(struct workspace *, int);
387 #define SWM_L_FOCUSPREV (1<<0)
388 #define SWM_L_MAPONFOCUS (1<<1)
389 void (*l_string)(struct workspace *);
391 /* stack, configure */
392 { vertical_stack, vertical_config, 0, plain_stacker },
393 { horizontal_stack, horizontal_config, 0, plain_stacker },
395 SWM_L_MAPONFOCUS | SWM_L_FOCUSPREV, plain_stacker },
396 { NULL, NULL, 0, NULL },
399 /* position of max_stack mode in the layouts array, index into layouts! */
400 #define SWM_V_STACK (0)
401 #define SWM_H_STACK (1)
402 #define SWM_MAX_STACK (2)
404 #define SWM_H_SLICE (32)
405 #define SWM_V_SLICE (32)
407 /* define work spaces */
409 int idx; /* workspace index */
410 char *name; /* workspace name */
411 int always_raise; /* raise windows on focus */
412 struct layout *cur_layout; /* current layout handlers */
413 struct ws_win *focus; /* may be NULL */
414 struct ws_win *focus_prev; /* may be NULL */
415 struct swm_region *r; /* may be NULL */
416 struct swm_region *old_r; /* may be NULL */
417 struct ws_win_list winlist; /* list of windows in ws */
418 struct ws_win_list unmanagedlist; /* list of dead windows in ws */
419 char stacker[10]; /* display stacker and layout */
423 int horizontal_msize;
425 int horizontal_stacks;
434 enum { SWM_S_COLOR_BAR, SWM_S_COLOR_BAR_BORDER, SWM_S_COLOR_BAR_FONT,
435 SWM_S_COLOR_FOCUS, SWM_S_COLOR_UNFOCUS, SWM_S_COLOR_MAX };
437 /* physical screen mapping */
438 #define SWM_WS_MAX (10)
440 int idx; /* screen index */
441 struct swm_region_list rl; /* list of regions on this screen */
442 struct swm_region_list orl; /* list of old regions */
444 struct workspace ws[SWM_WS_MAX];
450 } c[SWM_S_COLOR_MAX];
454 struct swm_screen *screens;
457 /* args to functions */
460 #define SWM_ARG_ID_FOCUSNEXT (0)
461 #define SWM_ARG_ID_FOCUSPREV (1)
462 #define SWM_ARG_ID_FOCUSMAIN (2)
463 #define SWM_ARG_ID_FOCUSCUR (4)
464 #define SWM_ARG_ID_SWAPNEXT (10)
465 #define SWM_ARG_ID_SWAPPREV (11)
466 #define SWM_ARG_ID_SWAPMAIN (12)
467 #define SWM_ARG_ID_MOVELAST (13)
468 #define SWM_ARG_ID_MASTERSHRINK (20)
469 #define SWM_ARG_ID_MASTERGROW (21)
470 #define SWM_ARG_ID_MASTERADD (22)
471 #define SWM_ARG_ID_MASTERDEL (23)
472 #define SWM_ARG_ID_FLIPLAYOUT (24)
473 #define SWM_ARG_ID_STACKRESET (30)
474 #define SWM_ARG_ID_STACKINIT (31)
475 #define SWM_ARG_ID_CYCLEWS_UP (40)
476 #define SWM_ARG_ID_CYCLEWS_DOWN (41)
477 #define SWM_ARG_ID_CYCLESC_UP (42)
478 #define SWM_ARG_ID_CYCLESC_DOWN (43)
479 #define SWM_ARG_ID_CYCLEWS_UP_ALL (44)
480 #define SWM_ARG_ID_CYCLEWS_DOWN_ALL (45)
481 #define SWM_ARG_ID_STACKINC (50)
482 #define SWM_ARG_ID_STACKDEC (51)
483 #define SWM_ARG_ID_SS_ALL (60)
484 #define SWM_ARG_ID_SS_WINDOW (61)
485 #define SWM_ARG_ID_DONTCENTER (70)
486 #define SWM_ARG_ID_CENTER (71)
487 #define SWM_ARG_ID_KILLWINDOW (80)
488 #define SWM_ARG_ID_DELETEWINDOW (81)
489 #define SWM_ARG_ID_WIDTHGROW (90)
490 #define SWM_ARG_ID_WIDTHSHRINK (91)
491 #define SWM_ARG_ID_HEIGHTGROW (92)
492 #define SWM_ARG_ID_HEIGHTSHRINK (93)
493 #define SWM_ARG_ID_MOVEUP (100)
494 #define SWM_ARG_ID_MOVEDOWN (101)
495 #define SWM_ARG_ID_MOVELEFT (102)
496 #define SWM_ARG_ID_MOVERIGHT (103)
500 void focus(struct swm_region *, union arg *);
501 void focus_magic(struct ws_win *);
505 TAILQ_ENTRY(quirk) entry;
509 #define SWM_Q_FLOAT (1<<0) /* float this window */
510 #define SWM_Q_TRANSSZ (1<<1) /* transiend window size too small */
511 #define SWM_Q_ANYWHERE (1<<2) /* don't position this window */
512 #define SWM_Q_XTERM_FONTADJ (1<<3) /* adjust xterm fonts when resizing */
513 #define SWM_Q_FULLSCREEN (1<<4) /* remove border */
514 #define SWM_Q_FOCUSPREV (1<<5) /* focus on caller */
516 TAILQ_HEAD(quirk_list, quirk);
517 struct quirk_list quirks = TAILQ_HEAD_INITIALIZER(quirks);
520 * Supported EWMH hints should be added to
521 * both the enum and the ewmh array
523 enum { _NET_ACTIVE_WINDOW, _NET_MOVERESIZE_WINDOW, _NET_CLOSE_WINDOW,
524 _NET_WM_WINDOW_TYPE, _NET_WM_WINDOW_TYPE_DOCK,
525 _NET_WM_WINDOW_TYPE_TOOLBAR, _NET_WM_WINDOW_TYPE_UTILITY,
526 _NET_WM_WINDOW_TYPE_SPLASH, _NET_WM_WINDOW_TYPE_DIALOG,
527 _NET_WM_WINDOW_TYPE_NORMAL, _NET_WM_STATE,
528 _NET_WM_STATE_MAXIMIZED_HORZ, _NET_WM_STATE_MAXIMIZED_VERT,
529 _NET_WM_STATE_SKIP_TASKBAR, _NET_WM_STATE_SKIP_PAGER,
530 _NET_WM_STATE_HIDDEN, _NET_WM_STATE_ABOVE, _SWM_WM_STATE_MANUAL,
531 _NET_WM_STATE_FULLSCREEN, _NET_WM_ALLOWED_ACTIONS, _NET_WM_ACTION_MOVE,
532 _NET_WM_ACTION_RESIZE, _NET_WM_ACTION_FULLSCREEN, _NET_WM_ACTION_CLOSE,
538 } ewmh[SWM_EWMH_HINT_MAX] = {
539 /* must be in same order as in the enum */
540 {"_NET_ACTIVE_WINDOW", None},
541 {"_NET_MOVERESIZE_WINDOW", None},
542 {"_NET_CLOSE_WINDOW", None},
543 {"_NET_WM_WINDOW_TYPE", None},
544 {"_NET_WM_WINDOW_TYPE_DOCK", None},
545 {"_NET_WM_WINDOW_TYPE_TOOLBAR", None},
546 {"_NET_WM_WINDOW_TYPE_UTILITY", None},
547 {"_NET_WM_WINDOW_TYPE_SPLASH", None},
548 {"_NET_WM_WINDOW_TYPE_DIALOG", None},
549 {"_NET_WM_WINDOW_TYPE_NORMAL", None},
550 {"_NET_WM_STATE", None},
551 {"_NET_WM_STATE_MAXIMIZED_HORZ", None},
552 {"_NET_WM_STATE_MAXIMIZED_VERT", None},
553 {"_NET_WM_STATE_SKIP_TASKBAR", None},
554 {"_NET_WM_STATE_SKIP_PAGER", None},
555 {"_NET_WM_STATE_HIDDEN", None},
556 {"_NET_WM_STATE_ABOVE", None},
557 {"_SWM_WM_STATE_MANUAL", None},
558 {"_NET_WM_STATE_FULLSCREEN", None},
559 {"_NET_WM_ALLOWED_ACTIONS", None},
560 {"_NET_WM_ACTION_MOVE", None},
561 {"_NET_WM_ACTION_RESIZE", None},
562 {"_NET_WM_ACTION_FULLSCREEN", None},
563 {"_NET_WM_ACTION_CLOSE", None},
566 void store_float_geom(struct ws_win *, struct swm_region *);
567 int floating_toggle_win(struct ws_win *);
568 void spawn_select(struct swm_region *, union arg *, char *, int *);
569 unsigned char *get_win_name(Window);
572 get_property(Window id, Atom atom, long count, Atom type, unsigned long *nitems,
573 unsigned long *nbytes, unsigned char **data)
576 unsigned long *nbytes_ret, *nitems_ret;
577 unsigned long nbytes_tmp, nitems_tmp;
580 nbytes_ret = nbytes != NULL ? nbytes : &nbytes_tmp;
581 nitems_ret = nitems != NULL ? nitems : &nitems_tmp;
583 status = XGetWindowProperty(display, id, atom, 0L, count, False, type,
584 &real, &format, nitems_ret, nbytes_ret, data);
586 if (status != Success)
595 update_iconic(struct ws_win *win, int newv)
602 iprop = XInternAtom(display, "_SWM_ICONIC", False);
606 XChangeProperty(display, win->id, iprop, XA_INTEGER, 32,
607 PropModeReplace, (unsigned char *)&v, 1);
609 XDeleteProperty(display, win->id, iprop);
613 get_iconic(struct ws_win *win)
618 unsigned long nitems, extra;
619 unsigned char *prop = NULL;
621 iprop = XInternAtom(display, "_SWM_ICONIC", False);
624 status = XGetWindowProperty(display, win->id, iprop, 0L, 1L,
625 False, XA_INTEGER, &rettype, &retfmt, &nitems, &extra, &prop);
626 if (status != Success)
628 if (rettype != XA_INTEGER || retfmt != 32)
632 v = *((int32_t *)prop);
646 sup_list = XInternAtom(display, "_NET_SUPPORTED", False);
648 for (i = 0; i < LENGTH(ewmh); i++)
649 ewmh[i].atom = XInternAtom(display, ewmh[i].name, False);
651 for (i = 0; i < ScreenCount(display); i++) {
652 /* Support check window will be created by workaround(). */
654 /* Report supported atoms */
655 XDeleteProperty(display, screens[i].root, sup_list);
656 for (j = 0; j < LENGTH(ewmh); j++)
657 XChangeProperty(display, screens[i].root,
658 sup_list, XA_ATOM, 32,
659 PropModeAppend, (unsigned char *)&ewmh[j].atom,1);
667 unsigned char *data = NULL;
669 Atom sup_check, sup_list;
672 sup_check = XInternAtom(display, "_NET_SUPPORTING_WM_CHECK", False);
673 sup_list = XInternAtom(display, "_NET_SUPPORTED", False);
675 for (i = 0; i < ScreenCount(display); i++) {
676 /* Get the support check window and destroy it */
677 success = get_property(screens[i].root, sup_check, 1, XA_WINDOW,
682 XDestroyWindow(display, id);
683 XDeleteProperty(display, screens[i].root, sup_check);
684 XDeleteProperty(display, screens[i].root, sup_list);
692 ewmh_autoquirk(struct ws_win *win)
695 unsigned long *data = NULL, n;
698 success = get_property(win->id, ewmh[_NET_WM_WINDOW_TYPE].atom, (~0L),
699 XA_ATOM, &n, NULL, (void *)&data);
706 for (i = 0; i < n; i++) {
708 if (type == ewmh[_NET_WM_WINDOW_TYPE_NORMAL].atom)
710 if (type == ewmh[_NET_WM_WINDOW_TYPE_DOCK].atom ||
711 type == ewmh[_NET_WM_WINDOW_TYPE_TOOLBAR].atom ||
712 type == ewmh[_NET_WM_WINDOW_TYPE_UTILITY].atom) {
714 win->quirks = SWM_Q_FLOAT | SWM_Q_ANYWHERE;
717 if (type == ewmh[_NET_WM_WINDOW_TYPE_SPLASH].atom ||
718 type == ewmh[_NET_WM_WINDOW_TYPE_DIALOG].atom) {
720 win->quirks = SWM_Q_FLOAT;
728 #define SWM_EWMH_ACTION_COUNT_MAX (6)
729 #define EWMH_F_FULLSCREEN (1<<0)
730 #define EWMH_F_ABOVE (1<<1)
731 #define EWMH_F_HIDDEN (1<<2)
732 #define EWMH_F_SKIP_PAGER (1<<3)
733 #define EWMH_F_SKIP_TASKBAR (1<<4)
734 #define SWM_F_MANUAL (1<<5)
737 ewmh_set_win_fullscreen(struct ws_win *win, int fs)
739 struct swm_geometry rg;
747 DNPRINTF(SWM_D_MISC, "ewmh_set_win_fullscreen: window: 0x%lx, "
748 "fullscreen %s\n", win->id, YESNO(fs));
753 store_float_geom(win, win->ws->r);
757 if (win->g_floatvalid) {
758 /* refloat at last floating relative position */
759 X(win) = win->g_float.x - win->rg_float.x + rg.x;
760 Y(win) = win->g_float.y - win->rg_float.y + rg.y;
761 WIDTH(win) = win->g_float.w;
762 HEIGHT(win) = win->g_float.h;
770 ewmh_update_actions(struct ws_win *win)
772 Atom actions[SWM_EWMH_ACTION_COUNT_MAX];
778 actions[n++] = ewmh[_NET_WM_ACTION_CLOSE].atom;
781 actions[n++] = ewmh[_NET_WM_ACTION_MOVE].atom;
782 actions[n++] = ewmh[_NET_WM_ACTION_RESIZE].atom;
785 XChangeProperty(display, win->id, ewmh[_NET_WM_ALLOWED_ACTIONS].atom,
786 XA_ATOM, 32, PropModeReplace, (unsigned char *)actions, n);
789 #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
790 #define _NET_WM_STATE_ADD 1 /* add/set property */
791 #define _NET_WM_STATE_TOGGLE 2 /* toggle property */
794 ewmh_update_win_state(struct ws_win *win, long state, long action)
796 unsigned int mask = 0;
797 unsigned int changed = 0;
798 unsigned int orig_flags;
803 if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
804 mask = EWMH_F_FULLSCREEN;
805 if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
807 if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
809 if (state == ewmh[_NET_WM_STATE_SKIP_PAGER].atom)
810 mask = EWMH_F_SKIP_PAGER;
811 if (state == ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom)
812 mask = EWMH_F_SKIP_TASKBAR;
815 orig_flags = win->ewmh_flags;
818 case _NET_WM_STATE_REMOVE:
819 win->ewmh_flags &= ~mask;
821 case _NET_WM_STATE_ADD:
822 win->ewmh_flags |= mask;
824 case _NET_WM_STATE_TOGGLE:
825 win->ewmh_flags ^= mask;
829 changed = (win->ewmh_flags & mask) ^ (orig_flags & mask) ? 1 : 0;
831 if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
833 if (!floating_toggle_win(win))
834 win->ewmh_flags = orig_flags; /* revert */
835 if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
837 win->manual = (win->ewmh_flags & SWM_F_MANUAL) != 0;
838 if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
840 if (!ewmh_set_win_fullscreen(win,
841 win->ewmh_flags & EWMH_F_FULLSCREEN))
842 win->ewmh_flags = orig_flags; /* revert */
844 XDeleteProperty(display, win->id, ewmh[_NET_WM_STATE].atom);
846 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
847 XChangeProperty(display, win->id, ewmh[_NET_WM_STATE].atom,
848 XA_ATOM, 32, PropModeAppend,
849 (unsigned char *)&ewmh[_NET_WM_STATE_FULLSCREEN].atom, 1);
850 if (win->ewmh_flags & EWMH_F_SKIP_PAGER)
851 XChangeProperty(display, win->id, ewmh[_NET_WM_STATE].atom,
852 XA_ATOM, 32, PropModeAppend,
853 (unsigned char *)&ewmh[_NET_WM_STATE_SKIP_PAGER].atom, 1);
854 if (win->ewmh_flags & EWMH_F_SKIP_TASKBAR)
855 XChangeProperty(display, win->id, ewmh[_NET_WM_STATE].atom,
856 XA_ATOM, 32, PropModeAppend,
857 (unsigned char *)&ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom, 1);
858 if (win->ewmh_flags & EWMH_F_ABOVE)
859 XChangeProperty(display, win->id, ewmh[_NET_WM_STATE].atom,
860 XA_ATOM, 32, PropModeAppend,
861 (unsigned char *)&ewmh[_NET_WM_STATE_ABOVE].atom, 1);
862 if (win->ewmh_flags & SWM_F_MANUAL)
863 XChangeProperty(display, win->id, ewmh[_NET_WM_STATE].atom,
864 XA_ATOM, 32, PropModeAppend,
865 (unsigned char *)&ewmh[_SWM_WM_STATE_MANUAL].atom, 1);
869 ewmh_get_win_state(struct ws_win *win)
880 win->ewmh_flags |= EWMH_F_ABOVE;
882 win->ewmh_flags |= SWM_F_MANUAL;
884 success = get_property(win->id, ewmh[_NET_WM_STATE].atom,
885 (~0L), XA_ATOM, &n, NULL, (void *)&states);
890 for (i = 0; i < n; i++)
891 ewmh_update_win_state(win, states[i], _NET_WM_STATE_ADD);
899 geteventname(XEvent *e)
911 name = "ButtonPress";
914 name = "ButtonRelease";
917 name = "MotionNotify";
920 name = "EnterNotify";
923 name = "LeaveNotify";
932 name = "KeymapNotify";
938 name = "GraphicsExpose";
943 case VisibilityNotify:
944 name = "VisibilityNotify";
947 name = "CreateNotify";
950 name = "DestroyNotify";
953 name = "UnmapNotify";
962 name = "ReparentNotify";
964 case ConfigureNotify:
965 name = "ConfigureNotify";
967 case ConfigureRequest:
968 name = "ConfigureRequest";
971 name = "GravityNotify";
974 name = "ResizeRequest";
976 case CirculateNotify:
977 name = "CirculateNotify";
979 case CirculateRequest:
980 name = "CirculateRequest";
983 name = "PropertyNotify";
986 name = "SelectionClear";
988 case SelectionRequest:
989 name = "SelectionRequest";
991 case SelectionNotify:
992 name = "SelectionNotify";
995 name = "ColormapNotify";
998 name = "ClientMessage";
1001 name = "MappingNotify";
1011 xrandr_geteventname(XEvent *e)
1015 switch(e->type - xrandr_eventbase) {
1016 case RRScreenChangeNotify:
1017 name = "RRScreenChangeNotify";
1027 dumpwins(struct swm_region *r, union arg *args)
1031 XWindowAttributes wa;
1033 if (r->ws == NULL) {
1034 warnx("dumpwins: invalid workspace");
1038 warnx("=== managed window list ws %02d ===", r->ws->idx);
1040 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
1041 state = getstate(win->id);
1042 if (!XGetWindowAttributes(display, win->id, &wa))
1043 warnx("window: 0x%lx, failed XGetWindowAttributes",
1045 warnx("window: 0x%lx, map_state: %d, state: %d, "
1046 "transient: 0x%lx", win->id, wa.map_state, state,
1050 warnx("===== unmanaged window list =====");
1051 TAILQ_FOREACH(win, &r->ws->unmanagedlist, entry) {
1052 state = getstate(win->id);
1053 if (!XGetWindowAttributes(display, win->id, &wa))
1054 warnx("window: 0x%lx, failed XGetWindowAttributes",
1056 warnx("window: 0x%lx, map_state: %d, state: %d, "
1057 "transient: 0x%lx", win->id, wa.map_state, state,
1061 warnx("=================================");
1065 dumpwins(struct swm_region *r, union arg *args)
1068 #endif /* SWM_DEBUG */
1070 void expose(XEvent *);
1071 void keypress(XEvent *);
1072 void buttonpress(XEvent *);
1073 void configurerequest(XEvent *);
1074 void configurenotify(XEvent *);
1075 void destroynotify(XEvent *);
1076 void enternotify(XEvent *);
1077 void focusevent(XEvent *);
1078 void mapnotify(XEvent *);
1079 void mappingnotify(XEvent *);
1080 void maprequest(XEvent *);
1081 void propertynotify(XEvent *);
1082 void unmapnotify(XEvent *);
1083 void visibilitynotify(XEvent *);
1084 void clientmessage(XEvent *);
1086 void (*handler[LASTEvent])(XEvent *) = {
1088 [KeyPress] = keypress,
1089 [ButtonPress] = buttonpress,
1090 [ConfigureRequest] = configurerequest,
1091 [ConfigureNotify] = configurenotify,
1092 [DestroyNotify] = destroynotify,
1093 [EnterNotify] = enternotify,
1094 [FocusIn] = focusevent,
1095 [FocusOut] = focusevent,
1096 [MapNotify] = mapnotify,
1097 [MappingNotify] = mappingnotify,
1098 [MapRequest] = maprequest,
1099 [PropertyNotify] = propertynotify,
1100 [UnmapNotify] = unmapnotify,
1101 [VisibilityNotify] = visibilitynotify,
1102 [ClientMessage] = clientmessage,
1108 int saved_errno, status;
1111 saved_errno = errno;
1115 while ((pid = waitpid(WAIT_ANY, &status, WNOHANG)) != 0) {
1120 if (errno != ECHILD)
1121 warn("sighdlr: waitpid");
1122 #endif /* SWM_DEBUG */
1125 if (pid == searchpid)
1129 if (WIFEXITED(status)) {
1130 if (WEXITSTATUS(status) != 0)
1131 warnx("sighdlr: child exit status: %d",
1132 WEXITSTATUS(status));
1134 warnx("sighdlr: child is terminated "
1136 #endif /* SWM_DEBUG */
1150 errno = saved_errno;
1156 struct pid_e *p = NULL;
1158 DNPRINTF(SWM_D_MISC, "find_pid: %lu\n", pid);
1163 TAILQ_FOREACH(p, &pidlist, entry) {
1172 name_to_color(char *colorname)
1176 XColor screen_def, exact_def;
1177 unsigned long result = 0;
1178 char cname[32] = "#";
1180 cmap = DefaultColormap(display, screens[0].idx);
1181 status = XAllocNamedColor(display, cmap, colorname,
1182 &screen_def, &exact_def);
1184 strlcat(cname, colorname + 2, sizeof cname - 1);
1185 status = XAllocNamedColor(display, cmap, cname, &screen_def,
1189 result = screen_def.pixel;
1191 warnx("color '%s' not found", colorname);
1197 setscreencolor(char *val, int i, int c)
1199 if (i > 0 && i <= ScreenCount(display)) {
1200 screens[i - 1].c[c].color = name_to_color(val);
1201 free(screens[i - 1].c[c].name);
1202 if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
1204 } else if (i == -1) {
1205 for (i = 0; i < ScreenCount(display); i++) {
1206 screens[i].c[c].color = name_to_color(val);
1207 free(screens[i].c[c].name);
1208 if ((screens[i].c[c].name = strdup(val)) == NULL)
1212 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1213 i, ScreenCount(display));
1217 fancy_stacker(struct workspace *ws)
1219 strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1220 if (ws->cur_layout->l_stack == vertical_stack)
1221 snprintf(ws->stacker, sizeof ws->stacker,
1222 ws->l_state.vertical_flip ? "[%d>%d]" : "[%d|%d]",
1223 ws->l_state.vertical_mwin, ws->l_state.vertical_stacks);
1224 if (ws->cur_layout->l_stack == horizontal_stack)
1225 snprintf(ws->stacker, sizeof ws->stacker,
1226 ws->l_state.horizontal_flip ? "[%dv%d]" : "[%d-%d]",
1227 ws->l_state.horizontal_mwin, ws->l_state.horizontal_stacks);
1231 plain_stacker(struct workspace *ws)
1233 strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1234 if (ws->cur_layout->l_stack == vertical_stack)
1235 strlcpy(ws->stacker, ws->l_state.vertical_flip ? "[>]" : "[|]",
1236 sizeof ws->stacker);
1237 if (ws->cur_layout->l_stack == horizontal_stack)
1238 strlcpy(ws->stacker, ws->l_state.horizontal_flip ? "[v]" : "[-]",
1239 sizeof ws->stacker);
1243 custom_region(char *val)
1245 unsigned int sidx, x, y, w, h;
1247 if (sscanf(val, "screen[%u]:%ux%u+%u+%u", &sidx, &w, &h, &x, &y) != 5)
1248 errx(1, "invalid custom region, "
1249 "should be 'screen[<n>]:<n>x<n>+<n>+<n>");
1250 if (sidx < 1 || sidx > ScreenCount(display))
1251 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1252 sidx, ScreenCount(display));
1256 errx(1, "region %ux%u+%u+%u too small", w, h, x, y);
1258 if (x > DisplayWidth(display, sidx) ||
1259 y > DisplayHeight(display, sidx) ||
1260 w + x > DisplayWidth(display, sidx) ||
1261 h + y > DisplayHeight(display, sidx)) {
1262 warnx("ignoring region %ux%u+%u+%u - not within screen "
1263 "boundaries (%ux%u)", w, h, x, y,
1264 DisplayWidth(display, sidx), DisplayHeight(display, sidx));
1268 new_region(&screens[sidx], x, y, w, h);
1272 socket_setnonblock(int fd)
1276 if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
1277 err(1, "fcntl F_GETFL");
1278 flags |= O_NONBLOCK;
1279 if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
1280 err(1, "fcntl F_SETFL");
1284 bar_print(struct swm_region *r, char *s)
1288 XRectangle ibox, lbox;
1290 XClearWindow(display, r->bar_window);
1293 XmbTextExtents(bar_fs, s, len, &ibox, &lbox);
1295 switch (bar_justify) {
1296 case SWM_BAR_JUSTIFY_LEFT:
1299 case SWM_BAR_JUSTIFY_CENTER:
1300 x = (WIDTH(r) - lbox.width) / 2;
1302 case SWM_BAR_JUSTIFY_RIGHT:
1303 x = WIDTH(r) - lbox.width - SWM_BAR_OFFSET;
1307 if (x < SWM_BAR_OFFSET)
1310 DRAWSTRING(display, r->bar_window, bar_fs, r->s->bar_gc,
1311 x, (bar_fs_extents->max_logical_extent.height - lbox.height) / 2 -
1316 bar_extra_stop(void)
1320 bzero(bar_pipe, sizeof bar_pipe);
1323 kill(bar_pid, SIGTERM);
1326 strlcpy((char *)bar_ext, "", sizeof bar_ext);
1331 bar_class_name(char *s, ssize_t sz, struct ws_win *cur_focus)
1333 int do_class, do_name;
1335 XClassHint *xch = NULL;
1337 if ((title_name_enabled == 1 || title_class_enabled == 1) &&
1338 cur_focus != NULL) {
1339 if ((xch = XAllocClassHint()) == NULL)
1341 status = XGetClassHint(display, cur_focus->id, xch);
1342 if (status == BadWindow || status == BadAlloc)
1344 do_class = (title_class_enabled && xch->res_class != NULL);
1345 do_name = (title_name_enabled && xch->res_name != NULL);
1347 strlcat(s, xch->res_class, sz);
1348 if (do_class && do_name)
1349 strlcat(s, ":", sz);
1351 strlcat(s, xch->res_name, sz);
1352 strlcat(s, " ", sz);
1356 XFree(xch->res_name);
1357 XFree(xch->res_class);
1363 bar_window_name(char *s, ssize_t sz, struct ws_win *cur_focus)
1365 unsigned char *title;
1367 if (window_name_enabled && cur_focus != NULL) {
1368 title = get_win_name(cur_focus->id);
1369 if (title != NULL) {
1370 DNPRINTF(SWM_D_BAR, "bar_window_name: title: %s\n",
1373 if (cur_focus->floating)
1374 strlcat(s, "(f) ", sz);
1375 strlcat(s, (char *)title, sz);
1376 strlcat(s, " ", sz);
1382 int urgent[SWM_WS_MAX];
1384 bar_urgent(char *s, ssize_t sz)
1386 XWMHints *wmh = NULL;
1391 if (urgent_enabled == 0)
1394 for (i = 0; i < SWM_WS_MAX; i++)
1397 for (i = 0; i < ScreenCount(display); i++)
1398 for (j = 0; j < SWM_WS_MAX; j++)
1399 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry) {
1400 wmh = XGetWMHints(display, win->id);
1404 if (wmh->flags & XUrgencyHint)
1409 strlcat(s, "* ", sz);
1410 for (i = 0; i < SWM_WS_MAX; i++) {
1412 snprintf(b, sizeof b, "%d ", i + 1);
1414 snprintf(b, sizeof b, "- ");
1417 strlcat(s, "* ", sz);
1425 struct swm_region *r;
1428 char ws[SWM_BAR_MAX];
1429 char s[SWM_BAR_MAX];
1430 unsigned char cn[SWM_BAR_MAX];
1431 char loc[SWM_BAR_MAX];
1432 char *b, *stack = "";
1434 if (bar_enabled == 0)
1436 if (bar_extra && bar_extra_running) {
1437 /* ignore short reads; it'll correct itself */
1438 while ((b = fgetln(stdin, &len)) != NULL)
1439 if (b && b[len - 1] == '\n') {
1441 strlcpy((char *)bar_ext, b, sizeof bar_ext);
1443 if (b == NULL && errno != EAGAIN) {
1444 warn("bar_update: bar_extra failed");
1448 strlcpy((char *)bar_ext, "", sizeof bar_ext);
1450 if (clock_enabled == 0)
1451 strlcpy(s, "", sizeof s);
1454 localtime_r(&tmt, &tm);
1455 len = strftime(s, sizeof s, clock_format, &tm);
1457 strlcat(s, " ", sizeof s);
1460 for (i = 0; i < ScreenCount(display); i++) {
1462 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1463 strlcpy((char *)cn, "", sizeof cn);
1464 strlcpy(ws, "", sizeof ws);
1466 bar_urgent((char *)cn, sizeof cn);
1467 bar_class_name((char *)cn, sizeof cn,
1469 bar_window_name((char *)cn, sizeof cn,
1472 snprintf(ws, sizeof ws, "<%s>",
1476 stack = r->ws->stacker;
1478 snprintf(loc, sizeof loc, "%d:%d %s %s %s%s %s "
1479 "%s", x++, r->ws->idx + 1, stack, ws, s, cn,
1480 bar_ext, bar_vertext);
1494 bar_toggle(struct swm_region *r, union arg *args)
1496 struct swm_region *tmpr;
1497 int i, sc = ScreenCount(display);
1499 DNPRINTF(SWM_D_BAR, "bar_toggle\n");
1502 for (i = 0; i < sc; i++)
1503 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
1504 XUnmapWindow(display, tmpr->bar_window);
1506 for (i = 0; i < sc; i++)
1507 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
1508 XMapRaised(display, tmpr->bar_window);
1510 bar_enabled = !bar_enabled;
1513 /* must be after stack */
1520 XSetWindowAttributes wa;
1521 struct swm_region *r;
1524 /* do this here because the conf file is in memory */
1525 if (bar_extra && bar_extra_running == 0 && bar_argv[0]) {
1526 /* launch external status app */
1527 bar_extra_running = 1;
1528 if (pipe(bar_pipe) == -1)
1529 err(1, "pipe error");
1530 socket_setnonblock(bar_pipe[0]);
1531 socket_setnonblock(bar_pipe[1]); /* XXX hmmm, really? */
1532 if (dup2(bar_pipe[0], 0) == -1)
1534 if (dup2(bar_pipe[1], 1) == -1)
1536 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
1537 err(1, "could not disable SIGPIPE");
1538 switch (bar_pid = fork()) {
1540 err(1, "cannot fork");
1544 execvp(bar_argv[0], bar_argv);
1545 err(1, "%s external app failed", bar_argv[0]);
1547 default: /* parent */
1553 bzero(&wa, sizeof wa);
1554 for (i = 0; i < ScreenCount(display); i++)
1555 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1557 screens[i].c[SWM_S_COLOR_BAR_BORDER].color;
1558 wa.background_pixel =
1559 screens[i].c[SWM_S_COLOR_BAR].color;
1560 XChangeWindowAttributes(display, r->bar_window,
1561 CWBackPixel | CWBorderPixel, &wa);
1567 bar_setup(struct swm_region *r)
1569 char *default_string;
1570 char **missing_charsets;
1571 int num_missing_charsets = 0;
1575 XFreeFontSet(display, bar_fs);
1580 DNPRINTF(SWM_D_BAR, "bar_setup: loading bar_fonts: %s\n", bar_fonts);
1582 bar_fs = XCreateFontSet(display, bar_fonts, &missing_charsets,
1583 &num_missing_charsets, &default_string);
1585 if (num_missing_charsets > 0) {
1586 warnx("Unable to load charset(s):");
1588 for (i = 0; i < num_missing_charsets; ++i)
1589 warnx("%s", missing_charsets[i]);
1591 XFreeStringList(missing_charsets);
1593 if (strcmp(default_string, ""))
1594 warnx("Glyphs from those sets will be replaced "
1595 "by '%s'.", default_string);
1597 warnx("Glyphs from those sets won't be drawn.");
1601 errx(1, "Error creating font set structure.");
1603 bar_fs_extents = XExtentsOfFontSet(bar_fs);
1605 bar_height = bar_fs_extents->max_logical_extent.height +
1606 2 * bar_border_width;
1612 y = bar_at_bottom ? (Y(r) + HEIGHT(r) - bar_height) : Y(r);
1614 r->bar_window = XCreateSimpleWindow(display,
1615 r->s->root, x, y, WIDTH(r) - 2 * bar_border_width,
1616 bar_height - 2 * bar_border_width,
1617 bar_border_width, r->s->c[SWM_S_COLOR_BAR_BORDER].color,
1618 r->s->c[SWM_S_COLOR_BAR].color);
1619 XSelectInput(display, r->bar_window, VisibilityChangeMask);
1621 XMapRaised(display, r->bar_window);
1622 DNPRINTF(SWM_D_BAR, "bar_setup: bar_window: 0x%lx\n", r->bar_window);
1624 if (signal(SIGALRM, bar_signal) == SIG_ERR)
1625 err(1, "could not install bar_signal");
1630 drain_enter_notify(void)
1635 while (XCheckMaskEvent(display, EnterWindowMask, &cne))
1638 DNPRINTF(SWM_D_MISC, "drain_enter_notify: drained: %d\n", i);
1642 set_win_state(struct ws_win *win, long state)
1644 long data[] = {state, None};
1646 DNPRINTF(SWM_D_EVENT, "set_win_state: window: 0x%lx\n", win->id);
1651 XChangeProperty(display, win->id, astate, astate, 32, PropModeReplace,
1652 (unsigned char *)data, 2);
1659 unsigned char *p = NULL;
1662 if (!get_property(w, astate, 2L, astate, &n, NULL, &p))
1665 result = *((long *)p);
1671 version(struct swm_region *r, union arg *args)
1673 bar_version = !bar_version;
1675 snprintf(bar_vertext, sizeof bar_vertext,
1676 "Version: %s Build: %s", SCROTWM_VERSION, buildstr);
1678 strlcpy(bar_vertext, "", sizeof bar_vertext);
1683 client_msg(struct ws_win *win, Atom a)
1685 XClientMessageEvent cm;
1690 bzero(&cm, sizeof cm);
1691 cm.type = ClientMessage;
1692 cm.window = win->id;
1693 cm.message_type = aprot;
1696 cm.data.l[1] = CurrentTime;
1697 XSendEvent(display, win->id, False, 0L, (XEvent *)&cm);
1700 /* synthetic response to a ConfigureRequest when not making a change */
1702 config_win(struct ws_win *win, XConfigureRequestEvent *ev)
1709 /* send notification of unchanged state. */
1710 ce.type = ConfigureNotify;
1713 ce.width = WIDTH(win);
1714 ce.height = HEIGHT(win);
1715 ce.override_redirect = False;
1719 ce.display = display;
1721 ce.window = win->id;
1722 ce.border_width = border_width;
1726 ce.display = ev->display;
1727 ce.event = ev->window;
1728 ce.window = ev->window;
1730 /* make response appear more WM_SIZE_HINTS-compliant */
1732 DNPRINTF(SWM_D_MISC, "config_win: hints: window: 0x%lx,"
1733 " sh_mask: %ld, min: %d x %d, max: %d x %d, inc: "
1734 "%d x %d\n", win->id, win->sh_mask, SH_MIN_W(win),
1735 SH_MIN_H(win), SH_MAX_W(win), SH_MAX_H(win),
1736 SH_INC_W(win), SH_INC_H(win));
1740 /* the hint may be set... to 0! */
1741 if (SH_MIN_W(win) > 0 && ce.width < SH_MIN_W(win))
1742 ce.width = SH_MIN_W(win);
1743 if (SH_MIN_H(win) > 0 && ce.height < SH_MIN_H(win))
1744 ce.height = SH_MIN_H(win);
1749 /* may also be advertized as 0 */
1750 if (SH_MAX_W(win) > 0 && ce.width > SH_MAX_W(win))
1751 ce.width = SH_MAX_W(win);
1752 if (SH_MAX_H(win) > 0 && ce.height > SH_MAX_H(win))
1753 ce.height = SH_MAX_H(win);
1756 /* resize increment. */
1758 if (SH_INC_W(win) > 1 && ce.width > SH_INC_W(win))
1759 ce.width -= (ce.width - SH_MIN_W(win)) %
1761 if (SH_INC_H(win) > 1 && ce.height > SH_INC_H(win))
1762 ce.height -= (ce.height - SH_MIN_H(win)) %
1766 /* adjust x and y for requested border_width. */
1767 ce.x += border_width - ev->border_width;
1768 ce.y += border_width - ev->border_width;
1769 ce.border_width = ev->border_width;
1770 ce.above = ev->above;
1773 DNPRINTF(SWM_D_MISC, "config_win: ewmh: %s, window: 0x%lx, (x,y) w x h: "
1774 "(%d,%d) %d x %d, border: %d\n", YESNO(ev == NULL), win->id, ce.x,
1775 ce.y, ce.width, ce.height, ce.border_width);
1777 XSendEvent(display, win->id, False, StructureNotifyMask, (XEvent *)&ce);
1781 count_win(struct workspace *ws, int count_transient)
1786 TAILQ_FOREACH(win, &ws->winlist, entry) {
1787 if (count_transient == 0 && win->floating)
1789 if (count_transient == 0 && win->transient)
1795 DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
1801 quit(struct swm_region *r, union arg *args)
1803 DNPRINTF(SWM_D_MISC, "quit\n");
1808 unmap_window(struct ws_win *win)
1813 /* don't unmap again */
1814 if (getstate(win->id) == IconicState)
1817 set_win_state(win, IconicState);
1819 XUnmapWindow(display, win->id);
1820 XSetWindowBorder(display, win->id,
1821 win->s->c[SWM_S_COLOR_UNFOCUS].color);
1830 for (i = 0; i < ScreenCount(display); i++)
1831 for (j = 0; j < SWM_WS_MAX; j++)
1832 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1837 fake_keypress(struct ws_win *win, int keysym, int modifiers)
1844 event.display = display; /* Ignored, but what the hell */
1845 event.window = win->id;
1846 event.root = win->s->root;
1847 event.subwindow = None;
1848 event.time = CurrentTime;
1853 event.same_screen = True;
1854 event.keycode = XKeysymToKeycode(display, keysym);
1855 event.state = modifiers;
1857 event.type = KeyPress;
1858 XSendEvent(event.display, event.window, True,
1859 KeyPressMask, (XEvent *)&event);
1861 event.type = KeyRelease;
1862 XSendEvent(event.display, event.window, True,
1863 KeyPressMask, (XEvent *)&event);
1868 restart(struct swm_region *r, union arg *args)
1870 DNPRINTF(SWM_D_MISC, "restart: %s\n", start_argv[0]);
1872 /* disable alarm because the following code may not be interrupted */
1874 if (signal(SIGALRM, SIG_IGN) == SIG_ERR)
1875 err(1, "can't disable alarm");
1880 XCloseDisplay(display);
1881 execvp(start_argv[0], start_argv);
1882 warn("execvp failed");
1887 root_to_region(Window root)
1889 struct swm_region *r = NULL;
1891 int i, x, y, wx, wy;
1894 for (i = 0; i < ScreenCount(display); i++)
1895 if (screens[i].root == root)
1898 if (XQueryPointer(display, screens[i].root,
1899 &rr, &cr, &x, &y, &wx, &wy, &mask) != False) {
1900 /* choose a region based on pointer location */
1901 TAILQ_FOREACH(r, &screens[i].rl, entry)
1902 if (x >= X(r) && x <= X(r) + WIDTH(r) &&
1903 y >= Y(r) && y <= Y(r) + HEIGHT(r))
1908 r = TAILQ_FIRST(&screens[i].rl);
1914 find_unmanaged_window(Window id)
1919 for (i = 0; i < ScreenCount(display); i++)
1920 for (j = 0; j < SWM_WS_MAX; j++)
1921 TAILQ_FOREACH(win, &screens[i].ws[j].unmanagedlist,
1929 find_window(Window id)
1932 Window wrr, wpr, *wcr = NULL;
1936 for (i = 0; i < ScreenCount(display); i++)
1937 for (j = 0; j < SWM_WS_MAX; j++)
1938 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1942 /* if we were looking for the parent return that window instead */
1943 if (XQueryTree(display, id, &wrr, &wpr, &wcr, &nc) == 0)
1948 /* ignore not found and root */
1949 if (wpr == 0 || wrr == wpr)
1952 /* look for parent */
1953 for (i = 0; i < ScreenCount(display); i++)
1954 for (j = 0; j < SWM_WS_MAX; j++)
1955 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1963 spawn(int ws_idx, union arg *args, int close_fd)
1968 DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
1971 close(ConnectionNumber(display));
1973 setenv("LD_PRELOAD", SWM_LIB, 1);
1975 if (asprintf(&ret, "%d", ws_idx) == -1) {
1976 warn("spawn: asprintf SWM_WS");
1979 setenv("_SWM_WS", ret, 1);
1983 if (asprintf(&ret, "%d", getpid()) == -1) {
1984 warn("spawn: asprintf _SWM_PID");
1987 setenv("_SWM_PID", ret, 1);
1991 if (setsid() == -1) {
1992 warn("spawn: setsid");
1998 * close stdin and stdout to prevent interaction between apps
1999 * and the baraction script
2000 * leave stderr open to record errors
2002 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) == -1) {
2003 warn("spawn: open");
2006 dup2(fd, STDIN_FILENO);
2007 dup2(fd, STDOUT_FILENO);
2012 execvp(args->argv[0], args->argv);
2014 warn("spawn: execvp");
2019 spawnterm(struct swm_region *r, union arg *args)
2021 DNPRINTF(SWM_D_MISC, "spawnterm\n");
2025 setenv("_SWM_XTERM_FONTADJ", "", 1);
2026 spawn(r->ws->idx, args, 1);
2031 kill_refs(struct ws_win *win)
2034 struct swm_region *r;
2035 struct workspace *ws;
2040 for (i = 0; i < ScreenCount(display); i++)
2041 TAILQ_FOREACH(r, &screens[i].rl, entry)
2042 for (x = 0; x < SWM_WS_MAX; x++) {
2044 if (win == ws->focus)
2046 if (win == ws->focus_prev)
2047 ws->focus_prev = NULL;
2052 validate_win(struct ws_win *testwin)
2055 struct workspace *ws;
2056 struct swm_region *r;
2059 if (testwin == NULL)
2062 for (i = 0; i < ScreenCount(display); i++)
2063 TAILQ_FOREACH(r, &screens[i].rl, entry)
2064 for (x = 0; x < SWM_WS_MAX; x++) {
2066 TAILQ_FOREACH(win, &ws->winlist, entry)
2074 validate_ws(struct workspace *testws)
2076 struct swm_region *r;
2077 struct workspace *ws;
2080 /* validate all ws */
2081 for (i = 0; i < ScreenCount(display); i++)
2082 TAILQ_FOREACH(r, &screens[i].rl, entry)
2083 for (x = 0; x < SWM_WS_MAX; x++) {
2092 unfocus_win(struct ws_win *win)
2097 DNPRINTF(SWM_D_FOCUS, "unfocus_win: window: 0x%lx\n", WINID(win));
2101 if (win->ws == NULL)
2104 if (validate_ws(win->ws))
2105 return; /* XXX this gets hit with thunderbird, needs fixing */
2107 if (win->ws->r == NULL)
2110 if (validate_win(win)) {
2115 if (win->ws->focus == win) {
2116 win->ws->focus = NULL;
2117 win->ws->focus_prev = win;
2120 if (validate_win(win->ws->focus)) {
2121 kill_refs(win->ws->focus);
2122 win->ws->focus = NULL;
2124 if (validate_win(win->ws->focus_prev)) {
2125 kill_refs(win->ws->focus_prev);
2126 win->ws->focus_prev = NULL;
2129 /* drain all previous unfocus events */
2130 while (XCheckTypedEvent(display, FocusOut, &cne) == True)
2133 grabbuttons(win, 0);
2134 XSetWindowBorder(display, win->id,
2135 win->ws->r->s->c[SWM_S_COLOR_UNFOCUS].color);
2137 XChangeProperty(display, win->s->root,
2138 ewmh[_NET_ACTIVE_WINDOW].atom, XA_WINDOW, 32,
2139 PropModeReplace, (unsigned char *)&none,1);
2148 DNPRINTF(SWM_D_FOCUS, "unfocus_all\n");
2150 for (i = 0; i < ScreenCount(display); i++)
2151 for (j = 0; j < SWM_WS_MAX; j++)
2152 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2157 focus_win(struct ws_win *win)
2162 struct ws_win *cfw = NULL;
2165 DNPRINTF(SWM_D_FOCUS, "focus_win: window: 0x%lx\n", WINID(win));
2169 if (win->ws == NULL)
2172 if (validate_ws(win->ws))
2173 return; /* XXX this gets hit with thunderbird, needs fixing */
2175 if (validate_win(win)) {
2180 if (validate_win(win)) {
2185 XGetInputFocus(display, &cur_focus, &rr);
2186 if ((cfw = find_window(cur_focus)) != NULL)
2189 /* use larger hammer since the window was killed somehow */
2190 TAILQ_FOREACH(cfw, &win->ws->winlist, entry)
2191 if (cfw->ws && cfw->ws->r && cfw->ws->r->s)
2192 XSetWindowBorder(display, cfw->id,
2193 cfw->ws->r->s->c[SWM_S_COLOR_UNFOCUS].color);
2196 win->ws->focus = win;
2198 if (win->ws->r != NULL) {
2199 /* drain all previous focus events */
2200 while (XCheckTypedEvent(display, FocusIn, &cne) == True)
2204 XSetInputFocus(display, win->id,
2205 RevertToParent, CurrentTime);
2206 grabbuttons(win, 1);
2207 XSetWindowBorder(display, win->id,
2208 win->ws->r->s->c[SWM_S_COLOR_FOCUS].color);
2209 if (win->ws->cur_layout->flags & SWM_L_MAPONFOCUS ||
2210 win->ws->always_raise)
2211 XMapRaised(display, win->id);
2213 XChangeProperty(display, win->s->root,
2214 ewmh[_NET_ACTIVE_WINDOW].atom, XA_WINDOW, 32,
2215 PropModeReplace, (unsigned char *)&win->id,1);
2218 if (window_name_enabled || title_class_enabled || title_name_enabled)
2223 switchws(struct swm_region *r, union arg *args)
2225 int wsid = args->id, unmap_old = 0;
2226 struct swm_region *this_r, *other_r;
2228 struct workspace *new_ws, *old_ws;
2235 old_ws = this_r->ws;
2236 new_ws = &this_r->s->ws[wsid];
2238 DNPRINTF(SWM_D_WS, "switchws: screen[%d]:%dx%d+%d+%d: %d -> %d\n",
2239 r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), old_ws->idx, wsid);
2241 if (new_ws == NULL || old_ws == NULL)
2243 if (new_ws == old_ws)
2246 other_r = new_ws->r;
2247 if (other_r == NULL) {
2248 /* the other workspace is hidden, hide this one */
2252 /* the other ws is visible in another region, exchange them */
2253 other_r->ws_prior = new_ws;
2254 other_r->ws = old_ws;
2255 old_ws->r = other_r;
2257 this_r->ws_prior = old_ws;
2258 this_r->ws = new_ws;
2261 /* this is needed so that we can click on a window after a restart */
2265 a.id = SWM_ARG_ID_FOCUSCUR;
2266 focus(new_ws->r, &a);
2270 /* unmap old windows */
2272 TAILQ_FOREACH(win, &old_ws->winlist, entry)
2275 if (focus_mode == SWM_FOCUS_DEFAULT)
2276 drain_enter_notify();
2280 cyclews(struct swm_region *r, union arg *args)
2283 struct swm_screen *s = r->s;
2286 DNPRINTF(SWM_D_WS, "cyclews: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2287 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2292 case SWM_ARG_ID_CYCLEWS_UP_ALL:
2295 case SWM_ARG_ID_CYCLEWS_UP:
2296 if (a.id < SWM_WS_MAX - 1)
2301 case SWM_ARG_ID_CYCLEWS_DOWN_ALL:
2304 case SWM_ARG_ID_CYCLEWS_DOWN:
2308 a.id = SWM_WS_MAX - 1;
2315 (cycle_empty == 0 && TAILQ_EMPTY(&s->ws[a.id].winlist)))
2317 if (cycle_visible == 0 && s->ws[a.id].r != NULL)
2321 } while (a.id != r->ws->idx);
2325 priorws(struct swm_region *r, union arg *args)
2329 DNPRINTF(SWM_D_WS, "priorws: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2330 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2332 if (r->ws_prior == NULL)
2335 a.id = r->ws_prior->idx;
2340 cyclescr(struct swm_region *r, union arg *args)
2342 struct swm_region *rr = NULL;
2346 /* do nothing if we don't have more than one screen */
2347 if (!(ScreenCount(display) > 1 || outputs > 1))
2352 case SWM_ARG_ID_CYCLESC_UP:
2353 rr = TAILQ_NEXT(r, entry);
2355 rr = TAILQ_FIRST(&screens[i].rl);
2357 case SWM_ARG_ID_CYCLESC_DOWN:
2358 rr = TAILQ_PREV(r, swm_region_list, entry);
2360 rr = TAILQ_LAST(&screens[i].rl, swm_region_list);
2368 /* move mouse to region */
2370 y = Y(rr) + 1 + (bar_enabled ? bar_height : 0);
2371 XWarpPointer(display, None, rr->s[i].root, 0, 0, 0, 0, x, y);
2373 a.id = SWM_ARG_ID_FOCUSCUR;
2376 if (rr->ws->focus) {
2377 /* move to focus window */
2378 x = X(rr->ws->focus) + 1;
2379 y = Y(rr->ws->focus) + 1;
2380 XWarpPointer(display, None, rr->s[i].root, 0, 0, 0, 0, x, y);
2385 sort_windows(struct ws_win_list *wl)
2387 struct ws_win *win, *parent, *nxt;
2392 for (win = TAILQ_FIRST(wl); win != TAILQ_END(wl); win = nxt) {
2393 nxt = TAILQ_NEXT(win, entry);
2394 if (win->transient) {
2395 parent = find_window(win->transient);
2396 if (parent == NULL) {
2397 warnx("not possible bug");
2400 TAILQ_REMOVE(wl, win, entry);
2401 TAILQ_INSERT_AFTER(wl, parent, win, entry);
2408 swapwin(struct swm_region *r, union arg *args)
2410 struct ws_win *target, *source;
2411 struct ws_win *cur_focus;
2412 struct ws_win_list *wl;
2415 DNPRINTF(SWM_D_WS, "swapwin: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2416 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2418 cur_focus = r->ws->focus;
2419 if (cur_focus == NULL)
2423 wl = &source->ws->winlist;
2426 case SWM_ARG_ID_SWAPPREV:
2427 if (source->transient)
2428 source = find_window(source->transient);
2429 target = TAILQ_PREV(source, ws_win_list, entry);
2430 if (target && target->transient)
2431 target = find_window(target->transient);
2432 TAILQ_REMOVE(wl, source, entry);
2434 TAILQ_INSERT_TAIL(wl, source, entry);
2436 TAILQ_INSERT_BEFORE(target, source, entry);
2438 case SWM_ARG_ID_SWAPNEXT:
2439 target = TAILQ_NEXT(source, entry);
2440 /* move the parent and let the sort handle the move */
2441 if (source->transient)
2442 source = find_window(source->transient);
2443 TAILQ_REMOVE(wl, source, entry);
2445 TAILQ_INSERT_HEAD(wl, source, entry);
2447 TAILQ_INSERT_AFTER(wl, target, source, entry);
2449 case SWM_ARG_ID_SWAPMAIN:
2450 target = TAILQ_FIRST(wl);
2451 if (target == source) {
2452 if (source->ws->focus_prev != NULL &&
2453 source->ws->focus_prev != target)
2455 source = source->ws->focus_prev;
2459 if (target == NULL || source == NULL)
2461 source->ws->focus_prev = target;
2462 TAILQ_REMOVE(wl, target, entry);
2463 TAILQ_INSERT_BEFORE(source, target, entry);
2464 TAILQ_REMOVE(wl, source, entry);
2465 TAILQ_INSERT_HEAD(wl, source, entry);
2467 case SWM_ARG_ID_MOVELAST:
2468 TAILQ_REMOVE(wl, source, entry);
2469 TAILQ_INSERT_TAIL(wl, source, entry);
2472 DNPRINTF(SWM_D_MOVE, "swapwin: invalid id: %d\n", args->id);
2482 focus_prev(struct ws_win *win)
2484 struct ws_win *winfocus = NULL, *winlostfocus = NULL;
2485 struct ws_win *cur_focus = NULL;
2486 struct ws_win_list *wl = NULL;
2487 struct workspace *ws = NULL;
2489 DNPRINTF(SWM_D_FOCUS, "focus_prev: window: 0x%lx\n", WINID(win));
2491 if (!(win && win->ws))
2496 cur_focus = ws->focus;
2497 winlostfocus = cur_focus;
2499 /* pickle, just focus on whatever */
2500 if (cur_focus == NULL) {
2501 /* use prev_focus if valid */
2502 if (ws->focus_prev && ws->focus_prev != cur_focus &&
2503 find_window(WINID(ws->focus_prev)))
2504 winfocus = ws->focus_prev;
2505 if (winfocus == NULL)
2506 winfocus = TAILQ_FIRST(wl);
2510 /* if transient focus on parent */
2511 if (cur_focus->transient) {
2512 winfocus = find_window(cur_focus->transient);
2516 /* if in max_stack try harder */
2517 if ((win->quirks & SWM_Q_FOCUSPREV) ||
2518 (ws->cur_layout->flags & SWM_L_FOCUSPREV)) {
2519 if (cur_focus != ws->focus_prev)
2520 winfocus = ws->focus_prev;
2521 else if (cur_focus != ws->focus)
2522 winfocus = ws->focus;
2524 winfocus = TAILQ_PREV(win, ws_win_list, entry);
2529 if (cur_focus == win)
2530 winfocus = TAILQ_PREV(win, ws_win_list, entry);
2531 if (winfocus == NULL)
2532 winfocus = TAILQ_LAST(wl, ws_win_list);
2533 if (winfocus == NULL || winfocus == win)
2534 winfocus = TAILQ_NEXT(cur_focus, entry);
2536 if (winfocus == winlostfocus || winfocus == NULL) {
2537 /* update the bar so that title/class/name will be cleared. */
2538 if (window_name_enabled || title_name_enabled ||
2539 title_class_enabled)
2544 focus_magic(winfocus);
2548 focus(struct swm_region *r, union arg *args)
2550 struct ws_win *winfocus = NULL, *winlostfocus = NULL, *head;
2551 struct ws_win *cur_focus = NULL;
2552 struct ws_win_list *wl = NULL;
2553 struct workspace *ws = NULL;
2559 DNPRINTF(SWM_D_FOCUS, "focus: id: %d\n", args->id);
2561 /* treat FOCUS_CUR special */
2562 if (args->id == SWM_ARG_ID_FOCUSCUR) {
2563 if (r->ws->focus && r->ws->focus->iconic == 0)
2564 winfocus = r->ws->focus;
2565 else if (r->ws->focus_prev && r->ws->focus_prev->iconic == 0)
2566 winfocus = r->ws->focus_prev;
2568 TAILQ_FOREACH(winfocus, &r->ws->winlist, entry)
2569 if (winfocus->iconic == 0)
2572 focus_magic(winfocus);
2576 if ((cur_focus = r->ws->focus) == NULL)
2580 if (TAILQ_EMPTY(wl))
2582 /* make sure there is at least one uniconified window */
2584 TAILQ_FOREACH(winfocus, wl, entry)
2585 if (winfocus->iconic == 0) {
2592 winlostfocus = cur_focus;
2595 case SWM_ARG_ID_FOCUSPREV:
2596 head = TAILQ_PREV(cur_focus, ws_win_list, entry);
2598 head = TAILQ_LAST(wl, ws_win_list);
2600 if (WINID(winfocus) == cur_focus->transient) {
2601 head = TAILQ_PREV(winfocus, ws_win_list, entry);
2603 head = TAILQ_LAST(wl, ws_win_list);
2608 if (winfocus && winfocus->iconic) {
2609 while (winfocus != cur_focus) {
2610 if (winfocus == NULL)
2611 winfocus = TAILQ_LAST(wl, ws_win_list);
2612 if (winfocus->iconic == 0)
2614 winfocus = TAILQ_PREV(winfocus, ws_win_list,
2620 case SWM_ARG_ID_FOCUSNEXT:
2621 head = TAILQ_NEXT(cur_focus, entry);
2623 head = TAILQ_FIRST(wl);
2627 if (winfocus && winfocus->iconic) {
2628 while (winfocus != cur_focus) {
2629 if (winfocus == NULL)
2630 winfocus = TAILQ_FIRST(wl);
2631 if (winfocus->iconic == 0)
2633 winfocus = TAILQ_NEXT(winfocus, entry);
2638 case SWM_ARG_ID_FOCUSMAIN:
2639 winfocus = TAILQ_FIRST(wl);
2640 if (winfocus == cur_focus)
2641 winfocus = cur_focus->ws->focus_prev;
2647 if (winfocus == winlostfocus || winfocus == NULL) {
2648 /* update the bar so that title/class/name will be cleared. */
2649 if (window_name_enabled || title_name_enabled ||
2650 title_class_enabled)
2656 focus_magic(winfocus);
2660 cycle_layout(struct swm_region *r, union arg *args)
2662 struct workspace *ws = r->ws;
2665 DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", ws->idx);
2668 if (ws->cur_layout->l_stack == NULL)
2669 ws->cur_layout = &layouts[0];
2672 if (focus_mode == SWM_FOCUS_DEFAULT)
2673 drain_enter_notify();
2674 a.id = SWM_ARG_ID_FOCUSCUR;
2680 stack_config(struct swm_region *r, union arg *args)
2682 struct workspace *ws = r->ws;
2684 DNPRINTF(SWM_D_STACK, "stack_config: id: %d workspace: %d\n",
2687 if (ws->cur_layout->l_config != NULL)
2688 ws->cur_layout->l_config(ws, args->id);
2690 if (args->id != SWM_ARG_ID_STACKINIT)
2697 struct swm_geometry g;
2698 struct swm_region *r;
2704 DNPRINTF(SWM_D_STACK, "stack: begin\n");
2706 for (i = 0; i < ScreenCount(display); i++) {
2710 TAILQ_FOREACH(r, &screens[i].rl, entry) {
2711 DNPRINTF(SWM_D_STACK, "stack: workspace: %d "
2712 "(screen: %d, region: %d)\n", r->ws->idx, i, j++);
2714 /* start with screen geometry, adjust for bar */
2716 g.w -= 2 * border_width;
2717 g.h -= 2 * border_width;
2723 r->ws->cur_layout->l_stack(r->ws, &g);
2724 r->ws->cur_layout->l_string(r->ws);
2725 /* save r so we can track region changes */
2732 if (focus_mode == SWM_FOCUS_DEFAULT)
2733 drain_enter_notify();
2735 DNPRINTF(SWM_D_STACK, "stack: end\n");
2739 store_float_geom(struct ws_win *win, struct swm_region *r)
2741 /* retain window geom and region geom */
2742 win->g_float = win->g;
2743 win->rg_float = r->g;
2744 win->g_floatvalid = 1;
2748 stack_floater(struct ws_win *win, struct swm_region *r)
2756 bzero(&wc, sizeof wc);
2757 mask = CWX | CWY | CWBorderWidth | CWWidth | CWHeight;
2760 * to allow windows to change their size (e.g. mplayer fs) only retrieve
2761 * geom on ws switches or return from max mode
2763 if (win->floatmaxed || (r != r->ws->old_r && win->g_floatvalid
2764 && !(win->ewmh_flags & EWMH_F_FULLSCREEN))) {
2766 * use stored g and rg to set relative position and size
2767 * as in old region or before max stack mode
2769 X(win) = win->g_float.x - win->rg_float.x + X(r);
2770 Y(win) = win->g_float.y - win->rg_float.y + Y(r);
2771 WIDTH(win) = win->g_float.w;
2772 HEIGHT(win) = win->g_float.h;
2773 win->g_floatvalid = 0;
2776 win->floatmaxed = 0;
2778 if ((win->quirks & SWM_Q_FULLSCREEN) && (WIDTH(win) >= WIDTH(r)) &&
2779 (HEIGHT(win) >= HEIGHT(r)))
2780 wc.border_width = 0;
2782 wc.border_width = border_width;
2783 if (win->transient && (win->quirks & SWM_Q_TRANSSZ)) {
2784 WIDTH(win) = (double)WIDTH(r) * dialog_ratio;
2785 HEIGHT(win) = (double)HEIGHT(r) * dialog_ratio;
2790 * floaters and transients are auto-centred unless moved
2793 X(win) = X(r) + (WIDTH(r) - WIDTH(win)) / 2 - wc.border_width;
2794 Y(win) = Y(r) + (HEIGHT(r) - HEIGHT(win)) / 2 - wc.border_width;
2797 /* win can be outside r if new r smaller than old r */
2798 /* Ensure top left corner inside r (move probs otherwise) */
2799 if (X(win) < X(r) - wc.border_width)
2800 X(win) = X(r) - wc.border_width;
2801 if (X(win) > X(r) + WIDTH(r) - 1)
2802 X(win) = (WIDTH(win) > WIDTH(r)) ? X(r) :
2803 (X(r) + WIDTH(r) - WIDTH(win) - 2 * wc.border_width);
2804 if (Y(win) < Y(r) - wc.border_width)
2805 Y(win) = Y(r) - wc.border_width;
2806 if (Y(win) > Y(r) + HEIGHT(r) - 1)
2807 Y(win) = (HEIGHT(win) > HEIGHT(r)) ? Y(r) :
2808 (Y(r) + HEIGHT(r) - HEIGHT(win) - 2 * wc.border_width);
2812 wc.width = WIDTH(win);
2813 wc.height = HEIGHT(win);
2816 * Retain floater and transient geometry for correct positioning
2817 * when ws changes region
2819 if (!(win->ewmh_flags & EWMH_F_FULLSCREEN))
2820 store_float_geom(win, r);
2822 DNPRINTF(SWM_D_MISC, "stack_floater: window: %lu, (x,y) w x h: (%d,%d) "
2823 "%d x %d\n", win->id, wc.x, wc.y, wc.width, wc.height);
2825 XConfigureWindow(display, win->id, mask, &wc);
2829 * Send keystrokes to terminal to decrease/increase the font size as the
2830 * window size changes.
2833 adjust_font(struct ws_win *win)
2835 if (!(win->quirks & SWM_Q_XTERM_FONTADJ) ||
2836 win->floating || win->transient)
2839 if (win->sh.width_inc && win->last_inc != win->sh.width_inc &&
2840 WIDTH(win) / win->sh.width_inc < term_width &&
2841 win->font_steps < SWM_MAX_FONT_STEPS) {
2842 win->font_size_boundary[win->font_steps] =
2843 (win->sh.width_inc * term_width) + win->sh.base_width;
2846 win->last_inc = win->sh.width_inc;
2847 fake_keypress(win, XK_KP_Subtract, ShiftMask);
2848 } else if (win->font_steps && win->last_inc != win->sh.width_inc &&
2849 WIDTH(win) > win->font_size_boundary[win->font_steps - 1]) {
2852 win->last_inc = win->sh.width_inc;
2853 fake_keypress(win, XK_KP_Add, ShiftMask);
2857 #define SWAPXY(g) do { \
2859 tmp = (g)->y; (g)->y = (g)->x; (g)->x = tmp; \
2860 tmp = (g)->h; (g)->h = (g)->w; (g)->w = tmp; \
2863 stack_master(struct workspace *ws, struct swm_geometry *g, int rot, int flip)
2866 XWindowAttributes wa;
2867 struct swm_geometry win_g, r_g = *g;
2868 struct ws_win *win, *fs_win = 0;
2869 int i, j, s, stacks;
2870 int w_inc = 1, h_inc, w_base = 1, h_base;
2871 int hrh, extra = 0, h_slice, last_h = 0;
2872 int split, colno, winno, mwin, msize, mscale;
2873 int remain, missing, v_slice, reconfigure;
2876 DNPRINTF(SWM_D_STACK, "stack_master: workspace: %d, rot: %s, "
2877 "flip: %s\n", ws->idx, YESNO(rot), YESNO(flip));
2879 winno = count_win(ws, 0);
2880 if (winno == 0 && count_win(ws, 1) == 0)
2883 TAILQ_FOREACH(win, &ws->winlist, entry)
2884 if (win->transient == 0 && win->floating == 0
2885 && win->iconic == 0)
2892 w_inc = win->sh.width_inc;
2893 w_base = win->sh.base_width;
2894 mwin = ws->l_state.horizontal_mwin;
2895 mscale = ws->l_state.horizontal_msize;
2896 stacks = ws->l_state.horizontal_stacks;
2899 w_inc = win->sh.height_inc;
2900 w_base = win->sh.base_height;
2901 mwin = ws->l_state.vertical_mwin;
2902 mscale = ws->l_state.vertical_msize;
2903 stacks = ws->l_state.vertical_stacks;
2907 if (stacks > winno - mwin)
2908 stacks = winno - mwin;
2912 h_slice = r_g.h / SWM_H_SLICE;
2913 if (mwin && winno > mwin) {
2914 v_slice = r_g.w / SWM_V_SLICE;
2918 win_g.w = v_slice * mscale;
2920 if (w_inc > 1 && w_inc < v_slice) {
2921 /* adjust for window's requested size increment */
2922 remain = (win_g.w - w_base) % w_inc;
2923 missing = w_inc - remain;
2930 win_g.x += r_g.w - msize;
2933 colno = split = winno / stacks;
2934 win_g.w = ((r_g.w - (stacks * 2 * border_width) +
2935 2 * border_width) / stacks);
2937 hrh = r_g.h / colno;
2938 extra = r_g.h - (colno * hrh);
2939 win_g.h = hrh - 2 * border_width;
2941 /* stack all the tiled windows */
2942 i = j = 0, s = stacks;
2943 TAILQ_FOREACH(win, &ws->winlist, entry) {
2944 if (win->transient != 0 || win->floating != 0)
2946 if (win->iconic != 0)
2949 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
2954 if (split && i == split) {
2955 colno = (winno - mwin) / stacks;
2956 if (s <= (winno - mwin) % stacks)
2958 split = split + colno;
2959 hrh = (r_g.h / colno);
2960 extra = r_g.h - (colno * hrh);
2964 win_g.x += win_g.w + 2 * border_width;
2965 win_g.w = (r_g.w - msize -
2966 (stacks * 2 * border_width)) / stacks;
2968 win_g.w += (r_g.w - msize -
2969 (stacks * 2 * border_width)) % stacks;
2973 win_g.h = hrh - 2 * border_width;
2975 h_inc = win->sh.width_inc;
2976 h_base = win->sh.base_width;
2978 h_inc = win->sh.height_inc;
2979 h_base = win->sh.base_height;
2981 if (j == colno - 1) {
2982 win_g.h = hrh + extra;
2983 } else if (h_inc > 1 && h_inc < h_slice) {
2984 /* adjust for window's requested size increment */
2985 remain = (win_g.h - h_base) % h_inc;
2986 missing = h_inc - remain;
2988 if (missing <= extra || j == 0) {
3000 win_g.y += last_h + 2 * border_width;
3002 bzero(&wc, sizeof wc);
3003 if (disable_border && bar_enabled == 0 && winno == 1){
3004 wc.border_width = 0;
3005 win_g.w += 2 * border_width;
3006 win_g.h += 2 * border_width;
3008 wc.border_width = border_width;
3011 if (X(win) != win_g.y || Y(win) != win_g.x ||
3012 WIDTH(win) != win_g.h || HEIGHT(win) != win_g.w) {
3014 X(win) = wc.x = win_g.y;
3015 Y(win) = wc.y = win_g.x;
3016 WIDTH(win) = wc.width = win_g.h;
3017 HEIGHT(win) = wc.height = win_g.w;
3020 if (X(win) != win_g.x || Y(win) != win_g.y ||
3021 WIDTH(win) != win_g.w || HEIGHT(win) != win_g.h) {
3023 X(win) = wc.x = win_g.x;
3024 Y(win) = wc.y = win_g.y;
3025 WIDTH(win) = wc.width = win_g.w;
3026 HEIGHT(win) = wc.height = win_g.h;
3031 mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
3032 XConfigureWindow(display, win->id, mask, &wc);
3035 if (XGetWindowAttributes(display, win->id, &wa))
3036 if (wa.map_state == IsUnmapped)
3037 XMapRaised(display, win->id);
3045 /* now, stack all the floaters and transients */
3046 TAILQ_FOREACH(win, &ws->winlist, entry) {
3047 if (win->transient == 0 && win->floating == 0)
3049 if (win->iconic == 1)
3051 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
3056 stack_floater(win, ws->r);
3057 XMapRaised(display, win->id);
3061 stack_floater(fs_win, ws->r);
3062 XMapRaised(display, fs_win->id);
3067 vertical_config(struct workspace *ws, int id)
3069 DNPRINTF(SWM_D_STACK, "vertical_config: id: %d, workspace: %d\n",
3073 case SWM_ARG_ID_STACKRESET:
3074 case SWM_ARG_ID_STACKINIT:
3075 ws->l_state.vertical_msize = SWM_V_SLICE / 2;
3076 ws->l_state.vertical_mwin = 1;
3077 ws->l_state.vertical_stacks = 1;
3079 case SWM_ARG_ID_MASTERSHRINK:
3080 if (ws->l_state.vertical_msize > 1)
3081 ws->l_state.vertical_msize--;
3083 case SWM_ARG_ID_MASTERGROW:
3084 if (ws->l_state.vertical_msize < SWM_V_SLICE - 1)
3085 ws->l_state.vertical_msize++;
3087 case SWM_ARG_ID_MASTERADD:
3088 ws->l_state.vertical_mwin++;
3090 case SWM_ARG_ID_MASTERDEL:
3091 if (ws->l_state.vertical_mwin > 0)
3092 ws->l_state.vertical_mwin--;
3094 case SWM_ARG_ID_STACKINC:
3095 ws->l_state.vertical_stacks++;
3097 case SWM_ARG_ID_STACKDEC:
3098 if (ws->l_state.vertical_stacks > 1)
3099 ws->l_state.vertical_stacks--;
3101 case SWM_ARG_ID_FLIPLAYOUT:
3102 ws->l_state.vertical_flip = !ws->l_state.vertical_flip;
3110 vertical_stack(struct workspace *ws, struct swm_geometry *g)
3112 DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
3114 stack_master(ws, g, 0, ws->l_state.vertical_flip);
3118 horizontal_config(struct workspace *ws, int id)
3120 DNPRINTF(SWM_D_STACK, "horizontal_config: workspace: %d\n", ws->idx);
3123 case SWM_ARG_ID_STACKRESET:
3124 case SWM_ARG_ID_STACKINIT:
3125 ws->l_state.horizontal_mwin = 1;
3126 ws->l_state.horizontal_msize = SWM_H_SLICE / 2;
3127 ws->l_state.horizontal_stacks = 1;
3129 case SWM_ARG_ID_MASTERSHRINK:
3130 if (ws->l_state.horizontal_msize > 1)
3131 ws->l_state.horizontal_msize--;
3133 case SWM_ARG_ID_MASTERGROW:
3134 if (ws->l_state.horizontal_msize < SWM_H_SLICE - 1)
3135 ws->l_state.horizontal_msize++;
3137 case SWM_ARG_ID_MASTERADD:
3138 ws->l_state.horizontal_mwin++;
3140 case SWM_ARG_ID_MASTERDEL:
3141 if (ws->l_state.horizontal_mwin > 0)
3142 ws->l_state.horizontal_mwin--;
3144 case SWM_ARG_ID_STACKINC:
3145 ws->l_state.horizontal_stacks++;
3147 case SWM_ARG_ID_STACKDEC:
3148 if (ws->l_state.horizontal_stacks > 1)
3149 ws->l_state.horizontal_stacks--;
3151 case SWM_ARG_ID_FLIPLAYOUT:
3152 ws->l_state.horizontal_flip = !ws->l_state.horizontal_flip;
3160 horizontal_stack(struct workspace *ws, struct swm_geometry *g)
3162 DNPRINTF(SWM_D_STACK, "horizontal_stack: workspace: %d\n", ws->idx);
3164 stack_master(ws, g, 1, ws->l_state.horizontal_flip);
3167 /* fullscreen view */
3169 max_stack(struct workspace *ws, struct swm_geometry *g)
3172 struct swm_geometry gg = *g;
3173 struct ws_win *win, *wintrans = NULL, *parent = NULL;
3177 DNPRINTF(SWM_D_STACK, "max_stack: workspace: %d\n", ws->idx);
3182 winno = count_win(ws, 0);
3183 if (winno == 0 && count_win(ws, 1) == 0)
3186 TAILQ_FOREACH(win, &ws->winlist, entry) {
3187 if (win->transient) {
3189 parent = find_window(win->transient);
3193 if (win->floating && win->floatmaxed == 0 ) {
3195 * retain geometry for retrieval on exit from
3198 store_float_geom(win, ws->r);
3199 win->floatmaxed = 1;
3202 /* only reconfigure if necessary */
3203 if (X(win) != gg.x || Y(win) != gg.y || WIDTH(win) != gg.w ||
3204 HEIGHT(win) != gg.h) {
3205 bzero(&wc, sizeof wc);
3206 X(win) = wc.x = gg.x;
3207 Y(win) = wc.y = gg.y;
3209 wc.border_width = border_width;
3210 WIDTH(win) = wc.width = gg.w;
3211 HEIGHT(win) = wc.height = gg.h;
3213 wc.border_width = 0;
3214 WIDTH(win) = wc.width = gg.w + 2 * border_width;
3215 HEIGHT(win) = wc.height = gg.h +
3218 mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
3219 XConfigureWindow(display, win->id, mask, &wc);
3221 /* unmap only if we don't have multi screen */
3222 if (win != ws->focus)
3223 if (!(ScreenCount(display) > 1 || outputs > 1))
3227 /* put the last transient on top */
3230 XMapRaised(display, parent->id);
3231 stack_floater(wintrans, ws->r);
3232 focus_magic(wintrans);
3237 send_to_ws(struct swm_region *r, union arg *args)
3239 int wsid = args->id;
3240 struct ws_win *win = NULL, *parent;
3241 struct workspace *ws, *nws;
3242 Atom ws_idx_atom = 0;
3243 unsigned char ws_idx_str[SWM_PROPLEN];
3246 if (r && r->ws && r->ws->focus)
3252 if (win->ws->idx == wsid)
3255 DNPRINTF(SWM_D_MOVE, "send_to_ws: window: 0x%lx\n", win->id);
3258 nws = &win->s->ws[wsid];
3260 a.id = SWM_ARG_ID_FOCUSPREV;
3262 if (win->transient) {
3263 parent = find_window(win->transient);
3265 unmap_window(parent);
3266 TAILQ_REMOVE(&ws->winlist, parent, entry);
3267 TAILQ_INSERT_TAIL(&nws->winlist, parent, entry);
3272 TAILQ_REMOVE(&ws->winlist, win, entry);
3273 TAILQ_INSERT_TAIL(&nws->winlist, win, entry);
3274 if (TAILQ_EMPTY(&ws->winlist))
3275 r->ws->focus = NULL;
3278 /* Try to update the window's workspace property */
3279 ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
3281 snprintf((char *)ws_idx_str, SWM_PROPLEN, "%d", nws->idx) <
3283 DNPRINTF(SWM_D_PROP, "send_to_ws: set property: _SWM_WS: %s\n",
3285 XChangeProperty(display, win->id, ws_idx_atom, XA_STRING, 8,
3286 PropModeReplace, ws_idx_str, SWM_PROPLEN);
3293 pressbutton(struct swm_region *r, union arg *args)
3295 XTestFakeButtonEvent(display, args->id, True, CurrentTime);
3296 XTestFakeButtonEvent(display, args->id, False, CurrentTime);
3300 raise_toggle(struct swm_region *r, union arg *args)
3302 if (r && r->ws == NULL)
3305 r->ws->always_raise = !r->ws->always_raise;
3307 /* bring floaters back to top */
3308 if (r->ws->always_raise == 0)
3313 iconify(struct swm_region *r, union arg *args)
3317 if (r->ws->focus == NULL)
3319 unmap_window(r->ws->focus);
3320 update_iconic(r->ws->focus, 1);
3322 if (focus_mode == SWM_FOCUS_DEFAULT)
3323 drain_enter_notify();
3324 r->ws->focus = NULL;
3325 a.id = SWM_ARG_ID_FOCUSCUR;
3330 get_win_name(Window win)
3332 unsigned char *prop = NULL;
3333 unsigned long nbytes, nitems;
3335 /* try _NET_WM_NAME first */
3336 if (get_property(win, a_netwmname, 0L, a_utf8_string, NULL, &nbytes,
3339 if (get_property(win, a_netwmname, nbytes, a_utf8_string,
3340 &nitems, NULL, &prop))
3344 /* fallback to WM_NAME */
3345 if (!get_property(win, a_wmname, 0L, a_string, NULL, &nbytes, &prop))
3348 if (get_property(win, a_wmname, nbytes, a_string, &nitems, NULL, &prop))
3355 uniconify(struct swm_region *r, union arg *args)
3359 unsigned char *name;
3362 DNPRINTF(SWM_D_MISC, "uniconify\n");
3364 if (r && r->ws == NULL)
3367 /* make sure we have anything to uniconify */
3368 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
3369 if (win->ws == NULL)
3370 continue; /* should never happen */
3371 if (win->iconic == 0)
3379 search_resp_action = SWM_SEARCH_UNICONIFY;
3381 spawn_select(r, args, "search", &searchpid);
3383 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
3386 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
3387 if (win->ws == NULL)
3388 continue; /* should never happen */
3389 if (win->iconic == 0)
3392 name = get_win_name(win->id);
3395 fprintf(lfile, "%s.%lu\n", name, win->id);
3403 name_workspace(struct swm_region *r, union arg *args)
3407 DNPRINTF(SWM_D_MISC, "name_workspace\n");
3413 search_resp_action = SWM_SEARCH_NAME_WORKSPACE;
3415 spawn_select(r, args, "name_workspace", &searchpid);
3417 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
3420 fprintf(lfile, "%s", "");
3425 search_workspace(struct swm_region *r, union arg *args)
3428 struct workspace *ws;
3431 DNPRINTF(SWM_D_MISC, "search_workspace\n");
3437 search_resp_action = SWM_SEARCH_SEARCH_WORKSPACE;
3439 spawn_select(r, args, "search", &searchpid);
3441 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
3444 for (i = 0; i < SWM_WS_MAX; i++) {
3448 fprintf(lfile, "%d%s%s\n", ws->idx + 1,
3449 (ws->name ? ":" : ""), (ws->name ? ws->name : ""));
3456 search_win_cleanup(void)
3458 struct search_window *sw = NULL;
3460 while ((sw = TAILQ_FIRST(&search_wl)) != NULL) {
3461 XDestroyWindow(display, sw->indicator);
3462 XFreeGC(display, sw->gc);
3463 TAILQ_REMOVE(&search_wl, sw, entry);
3469 search_win(struct swm_region *r, union arg *args)
3471 struct ws_win *win = NULL;
3472 struct search_window *sw = NULL;
3479 XRectangle ibox, lbox;
3481 DNPRINTF(SWM_D_MISC, "search_win\n");
3484 search_resp_action = SWM_SEARCH_SEARCH_WINDOW;
3486 spawn_select(r, args, "search", &searchpid);
3488 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
3491 TAILQ_INIT(&search_wl);
3494 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
3495 if (win->iconic == 1)
3498 sw = calloc(1, sizeof(struct search_window));
3500 warn("search_win: calloc");
3502 search_win_cleanup();
3508 snprintf(s, sizeof s, "%d", i);
3511 XmbTextExtents(bar_fs, s, len, &ibox, &lbox);
3513 w = XCreateSimpleWindow(display,
3514 win->id, 0, 0,lbox.width + 4,
3515 bar_fs_extents->max_logical_extent.height, 1,
3516 r->s->c[SWM_S_COLOR_UNFOCUS].color,
3517 r->s->c[SWM_S_COLOR_FOCUS].color);
3520 TAILQ_INSERT_TAIL(&search_wl, sw, entry);
3522 sw->gc = XCreateGC(display, w, 0, &gcv);
3523 XMapRaised(display, w);
3524 XSetForeground(display, sw->gc, r->s->c[SWM_S_COLOR_BAR].color);
3526 DRAWSTRING(display, w, bar_fs, sw->gc, 2,
3527 (bar_fs_extents->max_logical_extent.height -
3528 lbox.height) / 2 - lbox.y, s, len);
3530 fprintf(lfile, "%d\n", i);
3538 search_resp_uniconify(char *resp, unsigned long len)
3540 unsigned char *name;
3544 DNPRINTF(SWM_D_MISC, "search_resp_uniconify: resp: %s\n", resp);
3546 TAILQ_FOREACH(win, &search_r->ws->winlist, entry) {
3547 if (win->iconic == 0)
3549 name = get_win_name(win->id);
3552 if (asprintf(&s, "%s.%lu", name, win->id) == -1) {
3557 if (strncmp(s, resp, len) == 0) {
3558 /* XXX this should be a callback to generalize */
3559 update_iconic(win, 0);
3568 search_resp_name_workspace(char *resp, unsigned long len)
3570 struct workspace *ws;
3572 DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: resp: %s\n", resp);
3574 if (search_r->ws == NULL)
3579 free(search_r->ws->name);
3580 search_r->ws->name = NULL;
3584 ws->name = strdup(resp);
3585 if (ws->name == NULL) {
3586 DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: "
3587 "strdup: %s", strerror(errno));
3594 search_resp_search_workspace(char *resp, unsigned long len)
3601 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: resp: %s\n", resp);
3605 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: strdup: %s",
3612 ws_idx = strtonum(q, 1, SWM_WS_MAX, &errstr);
3614 DNPRINTF(SWM_D_MISC, "workspace idx is %s: %s",
3621 switchws(search_r, &a);
3625 search_resp_search_window(char *resp, unsigned long len)
3630 struct search_window *sw;
3632 DNPRINTF(SWM_D_MISC, "search_resp_search_window: resp: %s\n", resp);
3636 DNPRINTF(SWM_D_MISC, "search_resp_search_window: strdup: %s",
3641 idx = strtonum(s, 1, INT_MAX, &errstr);
3643 DNPRINTF(SWM_D_MISC, "window idx is %s: %s",
3650 TAILQ_FOREACH(sw, &search_wl, entry)
3651 if (idx == sw->idx) {
3657 #define MAX_RESP_LEN 1024
3660 search_do_resp(void)
3666 DNPRINTF(SWM_D_MISC, "search_do_resp:\n");
3671 if ((resp = calloc(1, MAX_RESP_LEN + 1)) == NULL) {
3672 warn("search: calloc");
3676 rbytes = read(select_resp_pipe[0], resp, MAX_RESP_LEN);
3678 warn("search: read error");
3681 resp[rbytes] = '\0';
3684 * Older versions of dmenu (Atleast pre 4.4.1) do not send a
3685 * newline, so work around that by sanitizing the resp now.
3687 resp[strcspn(resp, "\n")] = '\0';
3690 switch (search_resp_action) {
3691 case SWM_SEARCH_UNICONIFY:
3692 search_resp_uniconify(resp, len);
3694 case SWM_SEARCH_NAME_WORKSPACE:
3695 search_resp_name_workspace(resp, len);
3697 case SWM_SEARCH_SEARCH_WORKSPACE:
3698 search_resp_search_workspace(resp, len);
3700 case SWM_SEARCH_SEARCH_WINDOW:
3701 search_resp_search_window(resp, len);
3706 if (search_resp_action == SWM_SEARCH_SEARCH_WINDOW)
3707 search_win_cleanup();
3709 search_resp_action = SWM_SEARCH_NONE;
3710 close(select_resp_pipe[0]);
3715 wkill(struct swm_region *r, union arg *args)
3717 DNPRINTF(SWM_D_MISC, "wkill: id: %d\n", args->id);
3719 if (r->ws->focus == NULL)
3722 if (args->id == SWM_ARG_ID_KILLWINDOW)
3723 XKillClient(display, r->ws->focus->id);
3725 if (r->ws->focus->can_delete)
3726 client_msg(r->ws->focus, adelete);
3731 floating_toggle_win(struct ws_win *win)
3733 struct swm_region *r;
3743 /* reject floating toggles in max stack mode */
3744 if (win->ws->cur_layout == &layouts[SWM_MAX_STACK])
3747 if (win->floating) {
3748 if (!win->floatmaxed) {
3749 /* retain position for refloat */
3750 store_float_geom(win, r);
3754 if (win->g_floatvalid) {
3755 /* refloat at last floating relative position */
3756 X(win) = win->g_float.x - win->rg_float.x + X(r);
3757 Y(win) = win->g_float.y - win->rg_float.y + Y(r);
3758 WIDTH(win) = win->g_float.w;
3759 HEIGHT(win) = win->g_float.h;
3764 ewmh_update_actions(win);
3770 floating_toggle(struct swm_region *r, union arg *args)
3772 struct ws_win *win = r->ws->focus;
3778 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
3779 _NET_WM_STATE_TOGGLE);
3782 if (focus_mode == SWM_FOCUS_DEFAULT)
3783 drain_enter_notify();
3785 if (win == win->ws->focus) {
3786 a.id = SWM_ARG_ID_FOCUSCUR;
3787 focus(win->ws->r, &a);
3792 constrain_window(struct ws_win *win, struct swm_region *r, int resizable)
3794 if (X(win) + WIDTH(win) > X(r) + WIDTH(r) - border_width) {
3796 WIDTH(win) = X(r) + WIDTH(r) - X(win) - border_width;
3798 X(win) = X(r) + WIDTH(r) - WIDTH(win) - border_width;
3801 if (X(win) < X(r) - border_width) {
3803 WIDTH(win) -= X(r) - X(win) - border_width;
3805 X(win) = X(r) - border_width;
3808 if (Y(win) + HEIGHT(win) > Y(r) + HEIGHT(r) - border_width) {
3810 HEIGHT(win) = Y(r) + HEIGHT(r) - Y(win) - border_width;
3812 Y(win) = Y(r) + HEIGHT(r) - HEIGHT(win) - border_width;
3815 if (Y(win) < Y(r) - border_width) {
3817 HEIGHT(win) -= Y(r) - Y(win) - border_width;
3819 Y(win) = Y(r) - border_width;
3824 if (HEIGHT(win) < 1)
3829 update_window(struct ws_win *win)
3834 bzero(&wc, sizeof wc);
3835 mask = CWBorderWidth | CWWidth | CWHeight | CWX | CWY;
3836 wc.border_width = border_width;
3839 wc.width = WIDTH(win);
3840 wc.height = HEIGHT(win);
3842 DNPRINTF(SWM_D_MISC, "update_window: window: 0x%lx, (x,y) w x h: "
3843 "(%d,%d) %d x %d\n", win->id, wc.x, wc.y, wc.width, wc.height);
3845 XConfigureWindow(display, win->id, mask, &wc);
3848 #define SWM_RESIZE_STEPS (50)
3851 resize(struct ws_win *win, union arg *args)
3855 struct swm_region *r = NULL;
3856 int resize_step = 0;
3860 struct swm_geometry g;
3861 int top = 0, left = 0;
3864 unsigned int shape; /* cursor style */
3870 DNPRINTF(SWM_D_MOUSE, "resize: window: 0x%lx, floating: %s, "
3871 "transient: 0x%lx\n", win->id, YESNO(win->floating),
3874 if (!(win->transient != 0 || win->floating != 0))
3877 /* reject resizes in max mode for floaters (transient ok) */
3878 if (win->floatmaxed)
3882 ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
3888 case SWM_ARG_ID_WIDTHSHRINK:
3889 WIDTH(win) -= SWM_RESIZE_STEPS;
3892 case SWM_ARG_ID_WIDTHGROW:
3893 WIDTH(win) += SWM_RESIZE_STEPS;
3896 case SWM_ARG_ID_HEIGHTSHRINK:
3897 HEIGHT(win) -= SWM_RESIZE_STEPS;
3900 case SWM_ARG_ID_HEIGHTGROW:
3901 HEIGHT(win) += SWM_RESIZE_STEPS;
3908 constrain_window(win, r, 1);
3910 store_float_geom(win,r);
3914 if (focus_mode == SWM_FOCUS_DEFAULT)
3915 drain_enter_notify();
3917 /* get cursor offset from window root */
3918 if (!XQueryPointer(display, win->id, &rr, &cr, &x, &y, &wx, &wy, &mask))
3923 if (wx < WIDTH(win) / 2)
3926 if (wy < HEIGHT(win) / 2)
3929 if (args->id == SWM_ARG_ID_CENTER)
3932 shape = (left) ? XC_top_left_corner : XC_top_right_corner;
3934 shape = (left) ? XC_bottom_left_corner : XC_bottom_right_corner;
3936 cursor = XCreateFontCursor(display, shape);
3938 if (XGrabPointer(display, win->id, False, MOUSEMASK, GrabModeAsync,
3939 GrabModeAsync, None, cursor, CurrentTime) != GrabSuccess) {
3940 XFreeCursor(display, cursor);
3945 XMaskEvent(display, MOUSEMASK | ExposureMask |
3946 SubstructureRedirectMask, &ev);
3948 case ConfigureRequest:
3951 handler[ev.type](&ev);
3954 /* cursor offset/delta from start of the operation */
3955 dx = ev.xmotion.x_root - x;
3956 dy = ev.xmotion.y_root - y;
3962 if (args->id == SWM_ARG_ID_CENTER) {
3963 if (g.h / 2 + dy < 1)
3967 HEIGHT(win) = g.h + 2 * dy;
3975 HEIGHT(win) = g.h + dy;
3982 if (args->id == SWM_ARG_ID_CENTER) {
3983 if (g.w / 2 + dx < 1)
3987 WIDTH(win) = g.w + 2 * dx;
3995 WIDTH(win) = g.w + dx;
3998 constrain_window(win, r, 1);
4000 /* not free, don't sync more than 120 times / second */
4001 if ((ev.xmotion.time - time) > (1000 / 120) ) {
4002 time = ev.xmotion.time;
4003 XSync(display, False);
4008 } while (ev.type != ButtonRelease);
4010 XSync(display, False);
4013 store_float_geom(win,r);
4015 XUngrabPointer(display, CurrentTime);
4016 XFreeCursor(display, cursor);
4019 drain_enter_notify();
4023 resize_step(struct swm_region *r, union arg *args)
4025 struct ws_win *win = NULL;
4027 if (r && r->ws && r->ws->focus)
4035 #define SWM_MOVE_STEPS (50)
4038 move(struct ws_win *win, union arg *args)
4043 struct swm_region *r = NULL;
4053 DNPRINTF(SWM_D_MOUSE, "move: window: 0x%lx, floating: %s, transient: "
4054 "0x%lx\n", win->id, YESNO(win->floating), win->transient);
4056 /* in max_stack mode should only move transients */
4057 if (win->ws->cur_layout == &layouts[SWM_MAX_STACK] && !win->transient)
4061 if (win->floating == 0 && !win->transient) {
4062 store_float_geom(win,r);
4063 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
4066 ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
4073 case SWM_ARG_ID_MOVELEFT:
4074 X(win) -= (SWM_MOVE_STEPS - border_width);
4077 case SWM_ARG_ID_MOVERIGHT:
4078 X(win) += (SWM_MOVE_STEPS - border_width);
4081 case SWM_ARG_ID_MOVEUP:
4082 Y(win) -= (SWM_MOVE_STEPS - border_width);
4085 case SWM_ARG_ID_MOVEDOWN:
4086 Y(win) += (SWM_MOVE_STEPS - border_width);
4093 constrain_window(win, r, 0);
4095 store_float_geom(win, r);
4099 if (XGrabPointer(display, win->id, False, MOUSEMASK, GrabModeAsync,
4100 GrabModeAsync, None, XCreateFontCursor(display, XC_fleur),
4101 CurrentTime) != GrabSuccess)
4104 /* get cursor offset from window root */
4105 if (!XQueryPointer(display, win->id, &rr, &cr, &x, &y, &wx, &wy, &mask))
4109 XMaskEvent(display, MOUSEMASK | ExposureMask |
4110 SubstructureRedirectMask, &ev);
4112 case ConfigureRequest:
4115 handler[ev.type](&ev);
4118 X(win) = ev.xmotion.x_root - wx - border_width;
4119 Y(win) = ev.xmotion.y_root - wy - border_width;
4121 constrain_window(win, r, 0);
4123 /* not free, don't sync more than 120 times / second */
4124 if ((ev.xmotion.time - time) > (1000 / 120) ) {
4125 time = ev.xmotion.time;
4126 XSync(display, False);
4131 } while (ev.type != ButtonRelease);
4133 XSync(display, False);
4136 store_float_geom(win,r);
4137 XUngrabPointer(display, CurrentTime);
4140 drain_enter_notify();
4144 move_step(struct swm_region *r, union arg *args)
4146 struct ws_win *win = NULL;
4148 if (r && r->ws && r->ws->focus)
4153 if (!(win->transient != 0 || win->floating != 0))
4160 /* user/key callable function IDs */
4231 kf_search_workspace,
4233 kf_dumpwins, /* MUST BE LAST */
4237 /* key definitions */
4239 dummykeyfunc(struct swm_region *r, union arg *args)
4244 legacyfunc(struct swm_region *r, union arg *args)
4249 char name[SWM_FUNCNAME_LEN];
4250 void (*func)(struct swm_region *r, union arg *);
4252 } keyfuncs[kf_invalid + 1] = {
4253 /* name function argument */
4254 { "cycle_layout", cycle_layout, {0} },
4255 { "flip_layout", stack_config, {.id = SWM_ARG_ID_FLIPLAYOUT} },
4256 { "stack_reset", stack_config, {.id = SWM_ARG_ID_STACKRESET} },
4257 { "master_shrink", stack_config, {.id = SWM_ARG_ID_MASTERSHRINK} },
4258 { "master_grow", stack_config, {.id = SWM_ARG_ID_MASTERGROW} },
4259 { "master_add", stack_config, {.id = SWM_ARG_ID_MASTERADD} },
4260 { "master_del", stack_config, {.id = SWM_ARG_ID_MASTERDEL} },
4261 { "stack_inc", stack_config, {.id = SWM_ARG_ID_STACKINC} },
4262 { "stack_dec", stack_config, {.id = SWM_ARG_ID_STACKDEC} },
4263 { "swap_main", swapwin, {.id = SWM_ARG_ID_SWAPMAIN} },
4264 { "focus_next", focus, {.id = SWM_ARG_ID_FOCUSNEXT} },
4265 { "focus_prev", focus, {.id = SWM_ARG_ID_FOCUSPREV} },
4266 { "swap_next", swapwin, {.id = SWM_ARG_ID_SWAPNEXT} },
4267 { "swap_prev", swapwin, {.id = SWM_ARG_ID_SWAPPREV} },
4268 { "spawn_term", spawnterm, {.argv = spawn_term} },
4269 { "spawn_menu", legacyfunc, {0} },
4270 { "quit", quit, {0} },
4271 { "restart", restart, {0} },
4272 { "focus_main", focus, {.id = SWM_ARG_ID_FOCUSMAIN} },
4273 { "ws_1", switchws, {.id = 0} },
4274 { "ws_2", switchws, {.id = 1} },
4275 { "ws_3", switchws, {.id = 2} },
4276 { "ws_4", switchws, {.id = 3} },
4277 { "ws_5", switchws, {.id = 4} },
4278 { "ws_6", switchws, {.id = 5} },
4279 { "ws_7", switchws, {.id = 6} },
4280 { "ws_8", switchws, {.id = 7} },
4281 { "ws_9", switchws, {.id = 8} },
4282 { "ws_10", switchws, {.id = 9} },
4283 { "ws_next", cyclews, {.id = SWM_ARG_ID_CYCLEWS_UP} },
4284 { "ws_prev", cyclews, {.id = SWM_ARG_ID_CYCLEWS_DOWN} },
4285 { "ws_next_all", cyclews, {.id = SWM_ARG_ID_CYCLEWS_UP_ALL} },
4286 { "ws_prev_all", cyclews, {.id = SWM_ARG_ID_CYCLEWS_DOWN_ALL} },
4287 { "ws_prior", priorws, {0} },
4288 { "screen_next", cyclescr, {.id = SWM_ARG_ID_CYCLESC_UP} },
4289 { "screen_prev", cyclescr, {.id = SWM_ARG_ID_CYCLESC_DOWN} },
4290 { "mvws_1", send_to_ws, {.id = 0} },
4291 { "mvws_2", send_to_ws, {.id = 1} },
4292 { "mvws_3", send_to_ws, {.id = 2} },
4293 { "mvws_4", send_to_ws, {.id = 3} },
4294 { "mvws_5", send_to_ws, {.id = 4} },
4295 { "mvws_6", send_to_ws, {.id = 5} },
4296 { "mvws_7", send_to_ws, {.id = 6} },
4297 { "mvws_8", send_to_ws, {.id = 7} },
4298 { "mvws_9", send_to_ws, {.id = 8} },
4299 { "mvws_10", send_to_ws, {.id = 9} },
4300 { "bar_toggle", bar_toggle, {0} },
4301 { "wind_kill", wkill, {.id = SWM_ARG_ID_KILLWINDOW} },
4302 { "wind_del", wkill, {.id = SWM_ARG_ID_DELETEWINDOW} },
4303 { "screenshot_all", legacyfunc, {0} },
4304 { "screenshot_wind", legacyfunc, {0} },
4305 { "float_toggle", floating_toggle,{0} },
4306 { "version", version, {0} },
4307 { "spawn_lock", legacyfunc, {0} },
4308 { "spawn_initscr", legacyfunc, {0} },
4309 { "spawn_custom", dummykeyfunc, {0} },
4310 { "iconify", iconify, {0} },
4311 { "uniconify", uniconify, {0} },
4312 { "raise_toggle", raise_toggle, {0} },
4313 { "button2", pressbutton, {2} },
4314 { "width_shrink", resize_step, {.id = SWM_ARG_ID_WIDTHSHRINK} },
4315 { "width_grow", resize_step, {.id = SWM_ARG_ID_WIDTHGROW} },
4316 { "height_shrink", resize_step, {.id = SWM_ARG_ID_HEIGHTSHRINK} },
4317 { "height_grow", resize_step, {.id = SWM_ARG_ID_HEIGHTGROW} },
4318 { "move_left", move_step, {.id = SWM_ARG_ID_MOVELEFT} },
4319 { "move_right", move_step, {.id = SWM_ARG_ID_MOVERIGHT} },
4320 { "move_up", move_step, {.id = SWM_ARG_ID_MOVEUP} },
4321 { "move_down", move_step, {.id = SWM_ARG_ID_MOVEDOWN} },
4322 { "name_workspace", name_workspace, {0} },
4323 { "search_workspace", search_workspace, {0} },
4324 { "search_win", search_win, {0} },
4325 { "dumpwins", dumpwins, {0} }, /* MUST BE LAST */
4326 { "invalid key func", NULL, {0} },
4329 TAILQ_ENTRY(key) entry;
4332 enum keyfuncid funcid;
4335 TAILQ_HEAD(key_list, key);
4336 struct key_list keys = TAILQ_HEAD_INITIALIZER(keys);
4339 enum { client_click, root_click };
4341 unsigned int action;
4343 unsigned int button;
4344 void (*func)(struct ws_win *, union arg *);
4347 /* action key mouse button func args */
4348 { client_click, MODKEY, Button3, resize, {.id = SWM_ARG_ID_DONTCENTER} },
4349 { client_click, MODKEY | ShiftMask, Button3, resize, {.id = SWM_ARG_ID_CENTER} },
4350 { client_click, MODKEY, Button1, move, {0} },
4354 update_modkey(unsigned int mod)
4360 TAILQ_FOREACH(kp, &keys, entry)
4361 if (kp->mod & ShiftMask)
4362 kp->mod = mod | ShiftMask;
4366 for (i = 0; i < LENGTH(buttons); i++)
4367 if (buttons[i].mask & ShiftMask)
4368 buttons[i].mask = mod | ShiftMask;
4370 buttons[i].mask = mod;
4375 TAILQ_ENTRY(spawn_prog) entry;
4380 TAILQ_HEAD(spawn_list, spawn_prog);
4381 struct spawn_list spawns = TAILQ_HEAD_INITIALIZER(spawns);
4384 spawn_expand(struct swm_region *r, union arg *args, char *spawn_name,
4387 struct spawn_prog *prog = NULL;
4389 char *ap, **real_args;
4391 DNPRINTF(SWM_D_SPAWN, "spawn_expand: %s\n", spawn_name);
4394 TAILQ_FOREACH(prog, &spawns, entry) {
4395 if (!strcasecmp(spawn_name, prog->name))
4399 warnx("spawn_custom: program %s not found", spawn_name);
4403 /* make room for expanded args */
4404 if ((real_args = calloc(prog->argc + 1, sizeof(char *))) == NULL)
4405 err(1, "spawn_custom: calloc real_args");
4407 /* expand spawn_args into real_args */
4408 for (i = 0; i < prog->argc; i++) {
4410 DNPRINTF(SWM_D_SPAWN, "spawn_custom: raw arg: %s\n", ap);
4411 if (!strcasecmp(ap, "$bar_border")) {
4413 strdup(r->s->c[SWM_S_COLOR_BAR_BORDER].name))
4415 err(1, "spawn_custom border color");
4416 } else if (!strcasecmp(ap, "$bar_color")) {
4418 strdup(r->s->c[SWM_S_COLOR_BAR].name))
4420 err(1, "spawn_custom bar color");
4421 } else if (!strcasecmp(ap, "$bar_font")) {
4422 if ((real_args[i] = strdup(bar_fonts))
4424 err(1, "spawn_custom bar fonts");
4425 } else if (!strcasecmp(ap, "$bar_font_color")) {
4427 strdup(r->s->c[SWM_S_COLOR_BAR_FONT].name))
4429 err(1, "spawn_custom color font");
4430 } else if (!strcasecmp(ap, "$color_focus")) {
4432 strdup(r->s->c[SWM_S_COLOR_FOCUS].name))
4434 err(1, "spawn_custom color focus");
4435 } else if (!strcasecmp(ap, "$color_unfocus")) {
4437 strdup(r->s->c[SWM_S_COLOR_UNFOCUS].name))
4439 err(1, "spawn_custom color unfocus");
4441 /* no match --> copy as is */
4442 if ((real_args[i] = strdup(ap)) == NULL)
4443 err(1, "spawn_custom strdup(ap)");
4445 DNPRINTF(SWM_D_SPAWN, "spawn_custom: cooked arg: %s\n",
4450 DNPRINTF(SWM_D_SPAWN, "spawn_custom: result: ");
4451 for (i = 0; i < prog->argc; i++)
4452 DNPRINTF(SWM_D_SPAWN, "\"%s\" ", real_args[i]);
4453 DNPRINTF(SWM_D_SPAWN, "\n");
4455 *ret_args = real_args;
4456 return (prog->argc);
4460 spawn_custom(struct swm_region *r, union arg *args, char *spawn_name)
4466 if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
4470 spawn(r->ws->idx, &a, 1);
4472 for (i = 0; i < spawn_argc; i++)
4478 spawn_select(struct swm_region *r, union arg *args, char *spawn_name, int *pid)
4484 if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
4488 if (pipe(select_list_pipe) == -1)
4489 err(1, "pipe error");
4490 if (pipe(select_resp_pipe) == -1)
4491 err(1, "pipe error");
4493 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
4494 err(1, "could not disable SIGPIPE");
4495 switch (*pid = fork()) {
4497 err(1, "cannot fork");
4500 if (dup2(select_list_pipe[0], 0) == -1)
4502 if (dup2(select_resp_pipe[1], 1) == -1)
4504 close(select_list_pipe[1]);
4505 close(select_resp_pipe[0]);
4506 spawn(r->ws->idx, &a, 0);
4508 default: /* parent */
4509 close(select_list_pipe[0]);
4510 close(select_resp_pipe[1]);
4514 for (i = 0; i < spawn_argc; i++)
4520 spawn_insert(char *name, char *args)
4522 char *arg, *cp, *ptr;
4523 struct spawn_prog *sp;
4525 DNPRINTF(SWM_D_SPAWN, "spawn_insert: %s\n", name);
4527 if ((sp = calloc(1, sizeof *sp)) == NULL)
4528 err(1, "spawn_insert: malloc");
4529 if ((sp->name = strdup(name)) == NULL)
4530 err(1, "spawn_insert: strdup");
4532 /* convert the arguments to an argument list */
4533 if ((ptr = cp = strdup(args)) == NULL)
4534 err(1, "spawn_insert: strdup");
4535 while ((arg = strsep(&ptr, " \t")) != NULL) {
4536 /* empty field; skip it */
4541 if ((sp->argv = realloc(sp->argv, sp->argc *
4542 sizeof *sp->argv)) == NULL)
4543 err(1, "spawn_insert: realloc");
4544 if ((sp->argv[sp->argc - 1] = strdup(arg)) == NULL)
4545 err(1, "spawn_insert: strdup");
4549 TAILQ_INSERT_TAIL(&spawns, sp, entry);
4550 DNPRINTF(SWM_D_SPAWN, "spawn_insert: leave\n");
4554 spawn_remove(struct spawn_prog *sp)
4558 DNPRINTF(SWM_D_SPAWN, "spawn_remove: %s\n", sp->name);
4560 TAILQ_REMOVE(&spawns, sp, entry);
4561 for (i = 0; i < sp->argc; i++)
4567 DNPRINTF(SWM_D_SPAWN, "spawn_remove: leave\n");
4571 spawn_replace(struct spawn_prog *sp, char *name, char *args)
4573 DNPRINTF(SWM_D_SPAWN, "spawn_replace: %s [%s]\n", sp->name, name);
4576 spawn_insert(name, args);
4578 DNPRINTF(SWM_D_SPAWN, "spawn_replace: leave\n");
4582 setspawn(char *name, char *args)
4584 struct spawn_prog *sp;
4586 DNPRINTF(SWM_D_SPAWN, "setspawn: %s\n", name);
4591 TAILQ_FOREACH(sp, &spawns, entry) {
4592 if (!strcmp(sp->name, name)) {
4596 spawn_replace(sp, name, args);
4597 DNPRINTF(SWM_D_SPAWN, "setspawn: leave\n");
4601 if (*args == '\0') {
4602 warnx("error: setspawn: cannot find program: %s", name);
4606 spawn_insert(name, args);
4607 DNPRINTF(SWM_D_SPAWN, "setspawn: leave\n");
4611 setconfspawn(char *selector, char *value, int flags)
4613 DNPRINTF(SWM_D_SPAWN, "setconfspawn: [%s] [%s]\n", selector, value);
4615 setspawn(selector, value);
4617 DNPRINTF(SWM_D_SPAWN, "setconfspawn: done\n");
4624 setconfspawn("term", "xterm", 0);
4625 setconfspawn("screenshot_all", "screenshot.sh full", 0);
4626 setconfspawn("screenshot_wind", "screenshot.sh window", 0);
4627 setconfspawn("lock", "xlock", 0);
4628 setconfspawn("initscr", "initscreen.sh", 0);
4629 setconfspawn("menu", "dmenu_run"
4632 " -nf $bar_font_color"
4634 " -sf $bar_color", 0);
4635 setconfspawn("search", "dmenu"
4639 " -nf $bar_font_color"
4641 " -sf $bar_color", 0);
4642 setconfspawn("name_workspace", "dmenu"
4646 " -nf $bar_font_color"
4648 " -sf $bar_color", 0);
4652 #define SWM_MODNAME_SIZE 32
4653 #define SWM_KEY_WS "\n+ \t"
4655 parsekeys(char *keystr, unsigned int currmod, unsigned int *mod, KeySym *ks)
4659 DNPRINTF(SWM_D_KEY, "parsekeys: enter [%s]\n", keystr);
4660 if (mod == NULL || ks == NULL) {
4661 DNPRINTF(SWM_D_KEY, "parsekeys: no mod or key vars\n");
4664 if (keystr == NULL || strlen(keystr) == 0) {
4665 DNPRINTF(SWM_D_KEY, "parsekeys: no keystr\n");
4671 while ((name = strsep(&cp, SWM_KEY_WS)) != NULL) {
4672 DNPRINTF(SWM_D_KEY, "parsekeys: key [%s]\n", name);
4674 cp += (long)strspn(cp, SWM_KEY_WS);
4675 if (strncasecmp(name, "MOD", SWM_MODNAME_SIZE) == 0)
4677 else if (!strncasecmp(name, "Mod1", SWM_MODNAME_SIZE))
4679 else if (!strncasecmp(name, "Mod2", SWM_MODNAME_SIZE))
4681 else if (!strncmp(name, "Mod3", SWM_MODNAME_SIZE))
4683 else if (!strncmp(name, "Mod4", SWM_MODNAME_SIZE))
4685 else if (strncasecmp(name, "SHIFT", SWM_MODNAME_SIZE) == 0)
4687 else if (strncasecmp(name, "CONTROL", SWM_MODNAME_SIZE) == 0)
4688 *mod |= ControlMask;
4690 *ks = XStringToKeysym(name);
4691 XConvertCase(*ks, ks, &uks);
4692 if (ks == NoSymbol) {
4694 "parsekeys: invalid key %s\n",
4700 DNPRINTF(SWM_D_KEY, "parsekeys: leave ok\n");
4705 strdupsafe(char *str)
4710 return (strdup(str));
4714 key_insert(unsigned int mod, KeySym ks, enum keyfuncid kfid, char *spawn_name)
4718 DNPRINTF(SWM_D_KEY, "key_insert: enter %s [%s]\n",
4719 keyfuncs[kfid].name, spawn_name);
4721 if ((kp = malloc(sizeof *kp)) == NULL)
4722 err(1, "key_insert: malloc");
4727 kp->spawn_name = strdupsafe(spawn_name);
4728 TAILQ_INSERT_TAIL(&keys, kp, entry);
4730 DNPRINTF(SWM_D_KEY, "key_insert: leave\n");
4734 key_remove(struct key *kp)
4736 DNPRINTF(SWM_D_KEY, "key_remove: %s\n", keyfuncs[kp->funcid].name);
4738 TAILQ_REMOVE(&keys, kp, entry);
4739 free(kp->spawn_name);
4742 DNPRINTF(SWM_D_KEY, "key_remove: leave\n");
4746 key_replace(struct key *kp, unsigned int mod, KeySym ks, enum keyfuncid kfid,
4749 DNPRINTF(SWM_D_KEY, "key_replace: %s [%s]\n", keyfuncs[kp->funcid].name,
4753 key_insert(mod, ks, kfid, spawn_name);
4755 DNPRINTF(SWM_D_KEY, "key_replace: leave\n");
4759 setkeybinding(unsigned int mod, KeySym ks, enum keyfuncid kfid,
4764 DNPRINTF(SWM_D_KEY, "setkeybinding: enter %s [%s]\n",
4765 keyfuncs[kfid].name, spawn_name);
4767 TAILQ_FOREACH(kp, &keys, entry) {
4768 if (kp->mod == mod && kp->keysym == ks) {
4769 if (kfid == kf_invalid)
4772 key_replace(kp, mod, ks, kfid, spawn_name);
4773 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
4777 if (kfid == kf_invalid) {
4778 warnx("error: setkeybinding: cannot find mod/key combination");
4779 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
4783 key_insert(mod, ks, kfid, spawn_name);
4784 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
4788 setconfbinding(char *selector, char *value, int flags)
4790 enum keyfuncid kfid;
4793 struct spawn_prog *sp;
4794 DNPRINTF(SWM_D_KEY, "setconfbinding: enter\n");
4795 if (selector == NULL) {
4796 DNPRINTF(SWM_D_KEY, "setconfbinding: unbind %s\n", value);
4797 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
4799 setkeybinding(mod, ks, kfid, NULL);
4804 /* search by key function name */
4805 for (kfid = 0; kfid < kf_invalid; (kfid)++) {
4806 if (strncasecmp(selector, keyfuncs[kfid].name,
4807 SWM_FUNCNAME_LEN) == 0) {
4808 DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
4810 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
4811 setkeybinding(mod, ks, kfid, NULL);
4817 /* search by custom spawn name */
4818 TAILQ_FOREACH(sp, &spawns, entry) {
4819 if (strcasecmp(selector, sp->name) == 0) {
4820 DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
4822 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
4823 setkeybinding(mod, ks, kf_spawn_custom,
4830 DNPRINTF(SWM_D_KEY, "setconfbinding: no match\n");
4837 setkeybinding(MODKEY, XK_space, kf_cycle_layout,NULL);
4838 setkeybinding(MODKEY|ShiftMask, XK_backslash, kf_flip_layout, NULL);
4839 setkeybinding(MODKEY|ShiftMask, XK_space, kf_stack_reset, NULL);
4840 setkeybinding(MODKEY, XK_h, kf_master_shrink,NULL);
4841 setkeybinding(MODKEY, XK_l, kf_master_grow, NULL);
4842 setkeybinding(MODKEY, XK_comma, kf_master_add, NULL);
4843 setkeybinding(MODKEY, XK_period, kf_master_del, NULL);
4844 setkeybinding(MODKEY|ShiftMask, XK_comma, kf_stack_inc, NULL);
4845 setkeybinding(MODKEY|ShiftMask, XK_period, kf_stack_dec, NULL);
4846 setkeybinding(MODKEY, XK_Return, kf_swap_main, NULL);
4847 setkeybinding(MODKEY, XK_j, kf_focus_next, NULL);
4848 setkeybinding(MODKEY, XK_k, kf_focus_prev, NULL);
4849 setkeybinding(MODKEY|ShiftMask, XK_j, kf_swap_next, NULL);
4850 setkeybinding(MODKEY|ShiftMask, XK_k, kf_swap_prev, NULL);
4851 setkeybinding(MODKEY|ShiftMask, XK_Return, kf_spawn_term, NULL);
4852 setkeybinding(MODKEY, XK_p, kf_spawn_custom,"menu");
4853 setkeybinding(MODKEY|ShiftMask, XK_q, kf_quit, NULL);
4854 setkeybinding(MODKEY, XK_q, kf_restart, NULL);
4855 setkeybinding(MODKEY, XK_m, kf_focus_main, NULL);
4856 setkeybinding(MODKEY, XK_1, kf_ws_1, NULL);
4857 setkeybinding(MODKEY, XK_2, kf_ws_2, NULL);
4858 setkeybinding(MODKEY, XK_3, kf_ws_3, NULL);
4859 setkeybinding(MODKEY, XK_4, kf_ws_4, NULL);
4860 setkeybinding(MODKEY, XK_5, kf_ws_5, NULL);
4861 setkeybinding(MODKEY, XK_6, kf_ws_6, NULL);
4862 setkeybinding(MODKEY, XK_7, kf_ws_7, NULL);
4863 setkeybinding(MODKEY, XK_8, kf_ws_8, NULL);
4864 setkeybinding(MODKEY, XK_9, kf_ws_9, NULL);
4865 setkeybinding(MODKEY, XK_0, kf_ws_10, NULL);
4866 setkeybinding(MODKEY, XK_Right, kf_ws_next, NULL);
4867 setkeybinding(MODKEY, XK_Left, kf_ws_prev, NULL);
4868 setkeybinding(MODKEY, XK_Up, kf_ws_next_all, NULL);
4869 setkeybinding(MODKEY, XK_Down, kf_ws_prev_all, NULL);
4870 setkeybinding(MODKEY, XK_a, kf_ws_prior, NULL);
4871 setkeybinding(MODKEY|ShiftMask, XK_Right, kf_screen_next, NULL);
4872 setkeybinding(MODKEY|ShiftMask, XK_Left, kf_screen_prev, NULL);
4873 setkeybinding(MODKEY|ShiftMask, XK_1, kf_mvws_1, NULL);
4874 setkeybinding(MODKEY|ShiftMask, XK_2, kf_mvws_2, NULL);
4875 setkeybinding(MODKEY|ShiftMask, XK_3, kf_mvws_3, NULL);
4876 setkeybinding(MODKEY|ShiftMask, XK_4, kf_mvws_4, NULL);
4877 setkeybinding(MODKEY|ShiftMask, XK_5, kf_mvws_5, NULL);
4878 setkeybinding(MODKEY|ShiftMask, XK_6, kf_mvws_6, NULL);
4879 setkeybinding(MODKEY|ShiftMask, XK_7, kf_mvws_7, NULL);
4880 setkeybinding(MODKEY|ShiftMask, XK_8, kf_mvws_8, NULL);
4881 setkeybinding(MODKEY|ShiftMask, XK_9, kf_mvws_9, NULL);
4882 setkeybinding(MODKEY|ShiftMask, XK_0, kf_mvws_10, NULL);
4883 setkeybinding(MODKEY, XK_b, kf_bar_toggle, NULL);
4884 setkeybinding(MODKEY, XK_Tab, kf_focus_next, NULL);
4885 setkeybinding(MODKEY|ShiftMask, XK_Tab, kf_focus_prev, NULL);
4886 setkeybinding(MODKEY|ShiftMask, XK_x, kf_wind_kill, NULL);
4887 setkeybinding(MODKEY, XK_x, kf_wind_del, NULL);
4888 setkeybinding(MODKEY, XK_s, kf_spawn_custom,"screenshot_all");
4889 setkeybinding(MODKEY|ShiftMask, XK_s, kf_spawn_custom,"screenshot_wind");
4890 setkeybinding(MODKEY, XK_t, kf_float_toggle,NULL);
4891 setkeybinding(MODKEY|ShiftMask, XK_v, kf_version, NULL);
4892 setkeybinding(MODKEY|ShiftMask, XK_Delete, kf_spawn_custom,"lock");
4893 setkeybinding(MODKEY|ShiftMask, XK_i, kf_spawn_custom,"initscr");
4894 setkeybinding(MODKEY, XK_w, kf_iconify, NULL);
4895 setkeybinding(MODKEY|ShiftMask, XK_w, kf_uniconify, NULL);
4896 setkeybinding(MODKEY|ShiftMask, XK_r, kf_raise_toggle,NULL);
4897 setkeybinding(MODKEY, XK_v, kf_button2, NULL);
4898 setkeybinding(MODKEY, XK_equal, kf_width_grow, NULL);
4899 setkeybinding(MODKEY, XK_minus, kf_width_shrink,NULL);
4900 setkeybinding(MODKEY|ShiftMask, XK_equal, kf_height_grow, NULL);
4901 setkeybinding(MODKEY|ShiftMask, XK_minus, kf_height_shrink,NULL);
4902 setkeybinding(MODKEY, XK_bracketleft, kf_move_left, NULL);
4903 setkeybinding(MODKEY, XK_bracketright,kf_move_right, NULL);
4904 setkeybinding(MODKEY|ShiftMask, XK_bracketleft, kf_move_up, NULL);
4905 setkeybinding(MODKEY|ShiftMask, XK_bracketright,kf_move_down, NULL);
4906 setkeybinding(MODKEY|ShiftMask, XK_slash, kf_name_workspace,NULL);
4907 setkeybinding(MODKEY, XK_slash, kf_search_workspace,NULL);
4908 setkeybinding(MODKEY, XK_f, kf_search_win, NULL);
4910 setkeybinding(MODKEY|ShiftMask, XK_d, kf_dumpwins, NULL);
4917 struct key *kp_loop, *kp_next;
4919 kp_loop = TAILQ_FIRST(&keys);
4920 while (kp_loop != NULL) {
4921 kp_next = TAILQ_NEXT(kp_loop, entry);
4922 key_remove(kp_loop);
4928 setkeymapping(char *selector, char *value, int flags)
4930 char keymapping_file[PATH_MAX];
4931 DNPRINTF(SWM_D_KEY, "setkeymapping: enter\n");
4932 if (value[0] == '~')
4933 snprintf(keymapping_file, sizeof keymapping_file, "%s/%s",
4934 pwd->pw_dir, &value[1]);
4936 strlcpy(keymapping_file, value, sizeof keymapping_file);
4938 /* load new key bindings; if it fails, revert to default bindings */
4939 if (conf_load(keymapping_file, SWM_CONF_KEYMAPPING)) {
4943 DNPRINTF(SWM_D_KEY, "setkeymapping: leave\n");
4948 updatenumlockmask(void)
4951 XModifierKeymap *modmap;
4953 DNPRINTF(SWM_D_MISC, "updatenumlockmask\n");
4955 modmap = XGetModifierMapping(display);
4956 for (i = 0; i < 8; i++)
4957 for (j = 0; j < modmap->max_keypermod; j++)
4958 if (modmap->modifiermap[i * modmap->max_keypermod + j]
4959 == XKeysymToKeycode(display, XK_Num_Lock))
4960 numlockmask = (1 << i);
4962 XFreeModifiermap(modmap);
4970 unsigned int modifiers[] =
4971 { 0, LockMask, numlockmask, numlockmask | LockMask };
4974 DNPRINTF(SWM_D_MISC, "grabkeys\n");
4975 updatenumlockmask();
4977 for (k = 0; k < ScreenCount(display); k++) {
4978 if (TAILQ_EMPTY(&screens[k].rl))
4980 XUngrabKey(display, AnyKey, AnyModifier, screens[k].root);
4981 TAILQ_FOREACH(kp, &keys, entry) {
4982 if ((code = XKeysymToKeycode(display, kp->keysym)))
4983 for (j = 0; j < LENGTH(modifiers); j++)
4984 XGrabKey(display, code,
4985 kp->mod | modifiers[j],
4986 screens[k].root, True,
4987 GrabModeAsync, GrabModeAsync);
4993 grabbuttons(struct ws_win *win, int focused)
4996 unsigned int modifiers[] =
4997 { 0, LockMask, numlockmask, numlockmask|LockMask };
4999 updatenumlockmask();
5000 XUngrabButton(display, AnyButton, AnyModifier, win->id);
5002 for (i = 0; i < LENGTH(buttons); i++)
5003 if (buttons[i].action == client_click)
5004 for (j = 0; j < LENGTH(modifiers); j++)
5005 XGrabButton(display, buttons[i].button,
5006 buttons[i].mask | modifiers[j],
5007 win->id, False, BUTTONMASK,
5008 GrabModeAsync, GrabModeSync, None,
5011 XGrabButton(display, AnyButton, AnyModifier, win->id, False,
5012 BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
5015 const char *quirkname[] = {
5016 "NONE", /* config string for "no value" */
5025 /* SWM_Q_WS: retain '|' for back compat for now (2009-08-11) */
5026 #define SWM_Q_WS "\n|+ \t"
5028 parsequirks(char *qstr, unsigned long *quirk)
5038 while ((name = strsep(&cp, SWM_Q_WS)) != NULL) {
5040 cp += (long)strspn(cp, SWM_Q_WS);
5041 for (i = 0; i < LENGTH(quirkname); i++) {
5042 if (!strncasecmp(name, quirkname[i], SWM_QUIRK_LEN)) {
5043 DNPRINTF(SWM_D_QUIRK,
5044 "parsequirks: %s\n", name);
5049 *quirk |= 1 << (i-1);
5053 if (i >= LENGTH(quirkname)) {
5054 DNPRINTF(SWM_D_QUIRK,
5055 "parsequirks: invalid quirk [%s]\n", name);
5063 quirk_insert(const char *class, const char *name, unsigned long quirk)
5067 DNPRINTF(SWM_D_QUIRK, "quirk_insert: %s:%s [%lu]\n", class, name,
5070 if ((qp = malloc(sizeof *qp)) == NULL)
5071 err(1, "quirk_insert: malloc");
5072 if ((qp->class = strdup(class)) == NULL)
5073 err(1, "quirk_insert: strdup");
5074 if ((qp->name = strdup(name)) == NULL)
5075 err(1, "quirk_insert: strdup");
5078 TAILQ_INSERT_TAIL(&quirks, qp, entry);
5080 DNPRINTF(SWM_D_QUIRK, "quirk_insert: leave\n");
5084 quirk_remove(struct quirk *qp)
5086 DNPRINTF(SWM_D_QUIRK, "quirk_remove: %s:%s [%lu]\n", qp->class,
5087 qp->name, qp->quirk);
5089 TAILQ_REMOVE(&quirks, qp, entry);
5094 DNPRINTF(SWM_D_QUIRK, "quirk_remove: leave\n");
5098 quirk_replace(struct quirk *qp, const char *class, const char *name,
5099 unsigned long quirk)
5101 DNPRINTF(SWM_D_QUIRK, "quirk_replace: %s:%s [%lu]\n", qp->class,
5102 qp->name, qp->quirk);
5105 quirk_insert(class, name, quirk);
5107 DNPRINTF(SWM_D_QUIRK, "quirk_replace: leave\n");
5111 setquirk(const char *class, const char *name, unsigned long quirk)
5115 DNPRINTF(SWM_D_QUIRK, "setquirk: enter %s:%s [%lu]\n", class, name,
5118 TAILQ_FOREACH(qp, &quirks, entry) {
5119 if (!strcmp(qp->class, class) && !strcmp(qp->name, name)) {
5123 quirk_replace(qp, class, name, quirk);
5124 DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
5129 warnx("error: setquirk: cannot find class/name combination");
5133 quirk_insert(class, name, quirk);
5134 DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
5138 setconfquirk(char *selector, char *value, int flags)
5140 char *cp, *class, *name;
5142 unsigned long quirks;
5143 if (selector == NULL)
5145 if ((cp = strchr(selector, ':')) == NULL)
5150 if ((retval = parsequirks(value, &quirks)) == 0)
5151 setquirk(class, name, quirks);
5158 setquirk("MPlayer", "xv", SWM_Q_FLOAT | SWM_Q_FULLSCREEN | SWM_Q_FOCUSPREV);
5159 setquirk("OpenOffice.org 3.2", "VCLSalFrame", SWM_Q_FLOAT);
5160 setquirk("Firefox-bin", "firefox-bin", SWM_Q_TRANSSZ);
5161 setquirk("Firefox", "Dialog", SWM_Q_FLOAT);
5162 setquirk("Gimp", "gimp", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5163 setquirk("XTerm", "xterm", SWM_Q_XTERM_FONTADJ);
5164 setquirk("xine", "Xine Window", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5165 setquirk("Xitk", "Xitk Combo", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5166 setquirk("xine", "xine Panel", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5167 setquirk("Xitk", "Xine Window", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5168 setquirk("xine", "xine Video Fullscreen Window", SWM_Q_FULLSCREEN | SWM_Q_FLOAT);
5169 setquirk("pcb", "pcb", SWM_Q_FLOAT);
5170 setquirk("SDL_App", "SDL_App", SWM_Q_FLOAT | SWM_Q_FULLSCREEN);
5173 /* conf file stuff */
5174 #define SWM_CONF_FILE "scrotwm.conf"
5176 enum { SWM_S_BAR_DELAY, SWM_S_BAR_ENABLED, SWM_S_BAR_BORDER_WIDTH,
5177 SWM_S_STACK_ENABLED, SWM_S_CLOCK_ENABLED, SWM_S_CLOCK_FORMAT,
5178 SWM_S_CYCLE_EMPTY, SWM_S_CYCLE_VISIBLE, SWM_S_SS_ENABLED,
5179 SWM_S_TERM_WIDTH, SWM_S_TITLE_CLASS_ENABLED,
5180 SWM_S_TITLE_NAME_ENABLED, SWM_S_WINDOW_NAME_ENABLED, SWM_S_URGENT_ENABLED,
5181 SWM_S_FOCUS_MODE, SWM_S_DISABLE_BORDER, SWM_S_BORDER_WIDTH,
5182 SWM_S_BAR_FONT, SWM_S_BAR_ACTION, SWM_S_SPAWN_TERM,
5183 SWM_S_SS_APP, SWM_S_DIALOG_RATIO, SWM_S_BAR_AT_BOTTOM,
5184 SWM_S_VERBOSE_LAYOUT, SWM_S_BAR_JUSTIFY
5188 setconfvalue(char *selector, char *value, int flags)
5194 case SWM_S_BAR_DELAY:
5195 bar_delay = atoi(value);
5197 case SWM_S_BAR_ENABLED:
5198 bar_enabled = atoi(value);
5200 case SWM_S_BAR_BORDER_WIDTH:
5201 bar_border_width = atoi(value);
5203 case SWM_S_BAR_AT_BOTTOM:
5204 bar_at_bottom = atoi(value);
5206 case SWM_S_BAR_JUSTIFY:
5207 if (!strcmp(value, "left"))
5208 bar_justify = SWM_BAR_JUSTIFY_LEFT;
5209 else if (!strcmp(value, "center"))
5210 bar_justify = SWM_BAR_JUSTIFY_CENTER;
5211 else if (!strcmp(value, "right"))
5212 bar_justify = SWM_BAR_JUSTIFY_RIGHT;
5214 errx(1, "invalid bar_justify");
5216 case SWM_S_STACK_ENABLED:
5217 stack_enabled = atoi(value);
5219 case SWM_S_CLOCK_ENABLED:
5220 clock_enabled = atoi(value);
5222 case SWM_S_CLOCK_FORMAT:
5223 #ifndef SWM_DENY_CLOCK_FORMAT
5225 if ((clock_format = strdup(value)) == NULL)
5226 err(1, "setconfvalue: clock_format");
5229 case SWM_S_CYCLE_EMPTY:
5230 cycle_empty = atoi(value);
5232 case SWM_S_CYCLE_VISIBLE:
5233 cycle_visible = atoi(value);
5235 case SWM_S_SS_ENABLED:
5236 ss_enabled = atoi(value);
5238 case SWM_S_TERM_WIDTH:
5239 term_width = atoi(value);
5241 case SWM_S_TITLE_CLASS_ENABLED:
5242 title_class_enabled = atoi(value);
5244 case SWM_S_WINDOW_NAME_ENABLED:
5245 window_name_enabled = atoi(value);
5247 case SWM_S_TITLE_NAME_ENABLED:
5248 title_name_enabled = atoi(value);
5250 case SWM_S_URGENT_ENABLED:
5251 urgent_enabled = atoi(value);
5253 case SWM_S_FOCUS_MODE:
5254 if (!strcmp(value, "default"))
5255 focus_mode = SWM_FOCUS_DEFAULT;
5256 else if (!strcmp(value, "follow_cursor"))
5257 focus_mode = SWM_FOCUS_FOLLOW;
5258 else if (!strcmp(value, "synergy"))
5259 focus_mode = SWM_FOCUS_SYNERGY;
5261 errx(1, "focus_mode");
5263 case SWM_S_DISABLE_BORDER:
5264 disable_border = atoi(value);
5266 case SWM_S_BORDER_WIDTH:
5267 border_width = atoi(value);
5269 case SWM_S_BAR_FONT:
5271 if (asprintf(&bar_fonts, "%s,%s", value, bar_fonts) == -1)
5272 err(1, "setconfvalue: asprintf: failed to allocate "
5273 "memory for bar_fonts.");
5277 case SWM_S_BAR_ACTION:
5279 if ((bar_argv[0] = strdup(value)) == NULL)
5280 err(1, "setconfvalue: bar_action");
5282 case SWM_S_SPAWN_TERM:
5283 free(spawn_term[0]);
5284 if ((spawn_term[0] = strdup(value)) == NULL)
5285 err(1, "setconfvalue: spawn_term");
5289 case SWM_S_DIALOG_RATIO:
5290 dialog_ratio = atof(value);
5291 if (dialog_ratio > 1.0 || dialog_ratio <= .3)
5294 case SWM_S_VERBOSE_LAYOUT:
5295 verbose_layout = atoi(value);
5296 for (i = 0; layouts[i].l_stack != NULL; i++) {
5298 layouts[i].l_string = fancy_stacker;
5300 layouts[i].l_string = plain_stacker;
5310 setconfmodkey(char *selector, char *value, int flags)
5312 if (!strncasecmp(value, "Mod1", strlen("Mod1")))
5313 update_modkey(Mod1Mask);
5314 else if (!strncasecmp(value, "Mod2", strlen("Mod2")))
5315 update_modkey(Mod2Mask);
5316 else if (!strncasecmp(value, "Mod3", strlen("Mod3")))
5317 update_modkey(Mod3Mask);
5318 else if (!strncasecmp(value, "Mod4", strlen("Mod4")))
5319 update_modkey(Mod4Mask);
5326 setconfcolor(char *selector, char *value, int flags)
5328 setscreencolor(value, ((selector == NULL)?-1:atoi(selector)), flags);
5333 setconfregion(char *selector, char *value, int flags)
5335 custom_region(value);
5340 setautorun(char *selector, char *value, int flags)
5350 if (getenv("SWM_STARTED"))
5354 if (sscanf(value, "ws[%d]:%1023c", &ws_id, s) != 2)
5355 errx(1, "invalid autorun entry, should be 'ws[<idx>]:command'");
5357 if (ws_id < 0 || ws_id >= SWM_WS_MAX)
5358 errx(1, "autorun: invalid workspace %d", ws_id + 1);
5361 * This is a little intricate
5363 * If the pid already exists we simply reuse it because it means it was
5364 * used before AND not claimed by manage_window. We get away with
5365 * altering it in the parent after INSERT because this can not be a race
5368 while ((ap = strsep(&sp, " \t")) != NULL) {
5371 DNPRINTF(SWM_D_SPAWN, "setautorun: arg [%s]\n", ap);
5373 if ((a.argv = realloc(a.argv, argc * sizeof(char *))) == NULL)
5374 err(1, "setautorun: realloc");
5375 a.argv[argc - 1] = ap;
5378 if ((a.argv = realloc(a.argv, (argc + 1) * sizeof(char *))) == NULL)
5379 err(1, "setautorun: realloc");
5380 a.argv[argc] = NULL;
5382 if ((pid = fork()) == 0) {
5383 spawn(ws_id, &a, 1);
5392 p = calloc(1, sizeof *p);
5395 TAILQ_INSERT_TAIL(&pidlist, p, entry);
5405 setlayout(char *selector, char *value, int flags)
5407 int ws_id, i, x, mg, ma, si, raise;
5408 int st = SWM_V_STACK;
5410 struct workspace *ws;
5412 if (getenv("SWM_STARTED"))
5416 if (sscanf(value, "ws[%d]:%d:%d:%d:%d:%1023c",
5417 &ws_id, &mg, &ma, &si, &raise, s) != 6)
5418 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
5419 "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
5422 if (ws_id < 0 || ws_id >= SWM_WS_MAX)
5423 errx(1, "layout: invalid workspace %d", ws_id + 1);
5425 if (!strcasecmp(s, "vertical"))
5427 else if (!strcasecmp(s, "horizontal"))
5429 else if (!strcasecmp(s, "fullscreen"))
5432 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
5433 "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
5436 for (i = 0; i < ScreenCount(display); i++) {
5437 ws = (struct workspace *)&screens[i].ws;
5438 ws[ws_id].cur_layout = &layouts[st];
5440 ws[ws_id].always_raise = raise;
5441 if (st == SWM_MAX_STACK)
5445 for (x = 0; x < abs(mg); x++) {
5446 ws[ws_id].cur_layout->l_config(&ws[ws_id],
5447 mg >= 0 ? SWM_ARG_ID_MASTERGROW :
5448 SWM_ARG_ID_MASTERSHRINK);
5452 for (x = 0; x < abs(ma); x++) {
5453 ws[ws_id].cur_layout->l_config(&ws[ws_id],
5454 ma >= 0 ? SWM_ARG_ID_MASTERADD :
5455 SWM_ARG_ID_MASTERDEL);
5459 for (x = 0; x < abs(si); x++) {
5460 ws[ws_id].cur_layout->l_config(&ws[ws_id],
5461 si >= 0 ? SWM_ARG_ID_STACKINC :
5462 SWM_ARG_ID_STACKDEC);
5470 /* config options */
5471 struct config_option {
5473 int (*func)(char*, char*, int);
5476 struct config_option configopt[] = {
5477 { "bar_enabled", setconfvalue, SWM_S_BAR_ENABLED },
5478 { "bar_at_bottom", setconfvalue, SWM_S_BAR_AT_BOTTOM },
5479 { "bar_border", setconfcolor, SWM_S_COLOR_BAR_BORDER },
5480 { "bar_border_width", setconfvalue, SWM_S_BAR_BORDER_WIDTH },
5481 { "bar_color", setconfcolor, SWM_S_COLOR_BAR },
5482 { "bar_font_color", setconfcolor, SWM_S_COLOR_BAR_FONT },
5483 { "bar_font", setconfvalue, SWM_S_BAR_FONT },
5484 { "bar_action", setconfvalue, SWM_S_BAR_ACTION },
5485 { "bar_delay", setconfvalue, SWM_S_BAR_DELAY },
5486 { "bar_justify", setconfvalue, SWM_S_BAR_JUSTIFY },
5487 { "keyboard_mapping", setkeymapping, 0 },
5488 { "bind", setconfbinding, 0 },
5489 { "stack_enabled", setconfvalue, SWM_S_STACK_ENABLED },
5490 { "clock_enabled", setconfvalue, SWM_S_CLOCK_ENABLED },
5491 { "clock_format", setconfvalue, SWM_S_CLOCK_FORMAT },
5492 { "color_focus", setconfcolor, SWM_S_COLOR_FOCUS },
5493 { "color_unfocus", setconfcolor, SWM_S_COLOR_UNFOCUS },
5494 { "cycle_empty", setconfvalue, SWM_S_CYCLE_EMPTY },
5495 { "cycle_visible", setconfvalue, SWM_S_CYCLE_VISIBLE },
5496 { "dialog_ratio", setconfvalue, SWM_S_DIALOG_RATIO },
5497 { "verbose_layout", setconfvalue, SWM_S_VERBOSE_LAYOUT },
5498 { "modkey", setconfmodkey, 0 },
5499 { "program", setconfspawn, 0 },
5500 { "quirk", setconfquirk, 0 },
5501 { "region", setconfregion, 0 },
5502 { "spawn_term", setconfvalue, SWM_S_SPAWN_TERM },
5503 { "screenshot_enabled", setconfvalue, SWM_S_SS_ENABLED },
5504 { "screenshot_app", setconfvalue, SWM_S_SS_APP },
5505 { "window_name_enabled", setconfvalue, SWM_S_WINDOW_NAME_ENABLED },
5506 { "urgent_enabled", setconfvalue, SWM_S_URGENT_ENABLED },
5507 { "term_width", setconfvalue, SWM_S_TERM_WIDTH },
5508 { "title_class_enabled", setconfvalue, SWM_S_TITLE_CLASS_ENABLED },
5509 { "title_name_enabled", setconfvalue, SWM_S_TITLE_NAME_ENABLED },
5510 { "focus_mode", setconfvalue, SWM_S_FOCUS_MODE },
5511 { "disable_border", setconfvalue, SWM_S_DISABLE_BORDER },
5512 { "border_width", setconfvalue, SWM_S_BORDER_WIDTH },
5513 { "autorun", setautorun, 0 },
5514 { "layout", setlayout, 0 },
5519 conf_load(char *filename, int keymapping)
5522 char *line, *cp, *optsub, *optval;
5523 size_t linelen, lineno = 0;
5524 int wordlen, i, optind;
5525 struct config_option *opt;
5527 DNPRINTF(SWM_D_CONF, "conf_load: begin\n");
5529 if (filename == NULL) {
5530 warnx("conf_load: no filename");
5533 if ((config = fopen(filename, "r")) == NULL) {
5534 warn("conf_load: fopen: %s", filename);
5538 while (!feof(config)) {
5539 if ((line = fparseln(config, &linelen, &lineno, NULL, 0))
5542 err(1, "%s", filename);
5547 cp += strspn(cp, " \t\n"); /* eat whitespace */
5548 if (cp[0] == '\0') {
5553 /* get config option */
5554 wordlen = strcspn(cp, "=[ \t\n");
5556 warnx("%s: line %zd: no option found",
5561 for (i = 0; i < LENGTH(configopt); i++) {
5562 opt = &configopt[i];
5563 if (!strncasecmp(cp, opt->optname, wordlen) &&
5564 strlen(opt->optname) == wordlen) {
5570 warnx("%s: line %zd: unknown option %.*s",
5571 filename, lineno, wordlen, cp);
5574 if (keymapping && strcmp(opt->optname, "bind")) {
5575 warnx("%s: line %zd: invalid option %.*s",
5576 filename, lineno, wordlen, cp);
5580 cp += strspn(cp, " \t\n"); /* eat whitespace */
5581 /* get [selector] if any */
5585 wordlen = strcspn(cp, "]");
5588 warnx("%s: line %zd: syntax error",
5593 if (asprintf(&optsub, "%.*s", wordlen, cp) ==
5595 warnx("%s: line %zd: unable to allocate"
5596 "memory for selector", filename,
5602 cp += strspn(cp, "] \t\n"); /* eat trailing */
5604 cp += strspn(cp, "= \t\n"); /* eat trailing */
5606 optval = strdup(cp);
5607 /* call function to deal with it all */
5608 if (configopt[optind].func(optsub, optval,
5609 configopt[optind].funcflags) != 0)
5610 errx(1, "%s: line %zd: invalid data for %s",
5611 filename, lineno, configopt[optind].optname);
5618 DNPRINTF(SWM_D_CONF, "conf_load: end\n");
5625 DNPRINTF(SWM_D_CONF, "conf_load: end with error.\n");
5631 set_child_transient(struct ws_win *win, Window *trans)
5633 struct ws_win *parent, *w;
5634 XWMHints *wmh = NULL;
5635 struct swm_region *r;
5636 struct workspace *ws;
5638 parent = find_window(win->transient);
5640 parent->child_trans = win;
5642 DNPRINTF(SWM_D_MISC, "set_child_transient: parent doesn't exist"
5643 " for 0x%lx trans 0x%lx\n", win->id, win->transient);
5645 if (win->hints == NULL) {
5646 warnx("no hints for 0x%lx", win->id);
5650 r = root_to_region(win->wa.root);
5652 /* parent doen't exist in our window list */
5653 TAILQ_FOREACH(w, &ws->winlist, entry) {
5657 if ((wmh = XGetWMHints(display, w->id)) == NULL) {
5658 warnx("can't get hints for 0x%lx", w->id);
5662 if (win->hints->window_group != wmh->window_group)
5665 w->child_trans = win;
5666 win->transient = w->id;
5668 DNPRINTF(SWM_D_MISC, "set_child_transient: asjusting "
5669 "transient to 0x%lx\n", win->transient);
5679 window_get_pid(Window win)
5681 Atom actual_type_return;
5682 int actual_format_return = 0;
5683 unsigned long nitems_return = 0;
5684 unsigned long bytes_after_return = 0;
5688 unsigned char *prop = NULL;
5690 if (XGetWindowProperty(display, win,
5691 XInternAtom(display, "_NET_WM_PID", False), 0, 1, False,
5692 XA_CARDINAL, &actual_type_return, &actual_format_return,
5693 &nitems_return, &bytes_after_return,
5694 (unsigned char**)(void*)&pid) != Success)
5696 if (actual_type_return != XA_CARDINAL)
5707 if (XGetWindowProperty(display, win,
5708 XInternAtom(display, "_SWM_PID", False), 0, SWM_PROPLEN, False,
5709 XA_STRING, &actual_type_return, &actual_format_return,
5710 &nitems_return, &bytes_after_return, &prop) != Success)
5712 if (actual_type_return != XA_STRING)
5717 ret = strtonum((const char *)prop, 0, UINT_MAX, &errstr);
5718 /* ignore error because strtonum returns 0 anyway */
5725 manage_window(Window id)
5728 struct workspace *ws;
5729 struct ws_win *win, *ww;
5730 int format, i, ws_idx, n, border_me = 0;
5731 unsigned long nitems, bytes;
5732 Atom ws_idx_atom = 0, type;
5733 Atom *prot = NULL, *pp;
5734 unsigned char ws_idx_str[SWM_PROPLEN], *prop = NULL;
5735 struct swm_region *r;
5742 if ((win = find_window(id)) != NULL)
5743 return (win); /* already being managed */
5745 /* see if we are on the unmanaged list */
5746 if ((win = find_unmanaged_window(id)) != NULL) {
5747 DNPRINTF(SWM_D_MISC, "manage_window: previously unmanaged "
5748 "window: 0x%lx\n", win->id);
5749 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
5750 if (win->transient) {
5751 set_child_transient(win, &trans);
5752 } if (trans && (ww = find_window(trans)))
5753 TAILQ_INSERT_AFTER(&win->ws->winlist, ww, win, entry);
5755 TAILQ_INSERT_TAIL(&win->ws->winlist, win, entry);
5756 ewmh_update_actions(win);
5760 if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
5761 err(1, "manage_window: calloc: failed to allocate memory for "
5766 /* see if we need to override the workspace */
5767 p = find_pid(window_get_pid(id));
5769 /* Get all the window data in one shot */
5770 ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
5772 XGetWindowProperty(display, id, ws_idx_atom, 0, SWM_PROPLEN,
5773 False, XA_STRING, &type, &format, &nitems, &bytes, &prop);
5775 XGetWindowAttributes(display, id, &win->wa);
5776 XGetWMNormalHints(display, id, &win->sh, &win->sh_mask);
5777 win->hints = XGetWMHints(display, id);
5778 XGetTransientForHint(display, id, &trans);
5780 win->transient = trans;
5781 set_child_transient(win, &trans);
5782 DNPRINTF(SWM_D_MISC, "manage_window: window: 0x%lx, "
5783 "transient: 0x%lx\n", win->id, win->transient);
5786 /* get supported protocols */
5787 if (XGetWMProtocols(display, id, &prot, &n)) {
5788 for (i = 0, pp = prot; i < n; i++, pp++) {
5789 if (*pp == takefocus)
5790 win->take_focus = 1;
5792 win->can_delete = 1;
5798 win->iconic = get_iconic(win);
5801 * Figure out where to put the window. If it was previously assigned to
5802 * a workspace (either by spawn() or manually moving), and isn't
5803 * transient, * put it in the same workspace
5805 r = root_to_region(win->wa.root);
5807 ws = &r->s->ws[p->ws];
5808 TAILQ_REMOVE(&pidlist, p, entry);
5811 } else if (prop && win->transient == 0) {
5812 DNPRINTF(SWM_D_PROP, "manage_window: get _SWM_WS: %s\n", prop);
5813 ws_idx = strtonum((const char *)prop, 0, 9, &errstr);
5815 DNPRINTF(SWM_D_EVENT, "manage_window: window: #%s: %s",
5818 ws = &r->s->ws[ws_idx];
5821 /* this should launch transients in the same ws as parent */
5823 if ((ww = find_window(trans)) != NULL)
5829 warnx("manage_window: fix this "
5835 /* set up the window layout */
5838 win->s = r->s; /* this never changes */
5839 if (trans && (ww = find_window(trans)))
5840 TAILQ_INSERT_AFTER(&ws->winlist, ww, win, entry);
5842 TAILQ_INSERT_TAIL(&ws->winlist, win, entry);
5844 WIDTH(win) = win->wa.width;
5845 HEIGHT(win) = win->wa.height;
5848 win->g_floatvalid = 0;
5849 win->floatmaxed = 0;
5850 win->ewmh_flags = 0;
5852 /* Set window properties so we can remember this after reincarnation */
5853 if (ws_idx_atom && prop == NULL &&
5854 snprintf((char *)ws_idx_str, SWM_PROPLEN, "%d", ws->idx) <
5856 DNPRINTF(SWM_D_PROP, "manage_window: set _SWM_WS: %s\n",
5858 XChangeProperty(display, win->id, ws_idx_atom, XA_STRING, 8,
5859 PropModeReplace, ws_idx_str, SWM_PROPLEN);
5864 ewmh_autoquirk(win);
5866 if (XGetClassHint(display, win->id, &win->ch)) {
5867 DNPRINTF(SWM_D_CLASS, "manage_window: class: %s, name: %s\n",
5868 win->ch.res_class, win->ch.res_name);
5870 /* java is retarded so treat it special */
5871 if (strstr(win->ch.res_name, "sun-awt")) {
5876 TAILQ_FOREACH(qp, &quirks, entry) {
5877 if (!strcmp(win->ch.res_class, qp->class) &&
5878 !strcmp(win->ch.res_name, qp->name)) {
5879 DNPRINTF(SWM_D_CLASS, "manage_window: found: "
5880 "class: %s, name: %s\n", win->ch.res_class,
5882 if (qp->quirk & SWM_Q_FLOAT) {
5886 win->quirks = qp->quirk;
5891 /* alter window position if quirky */
5892 if (win->quirks & SWM_Q_ANYWHERE) {
5893 win->manual = 1; /* don't center the quirky windows */
5894 bzero(&wc, sizeof wc);
5896 if (bar_enabled && Y(win) < bar_height) {
5897 Y(win) = wc.y = bar_height;
5900 if (WIDTH(win) + X(win) > WIDTH(r)) {
5901 X(win) = wc.x = WIDTH(r) - WIDTH(win) - 2;
5907 /* Reset font sizes (the bruteforce way; no default keybinding). */
5908 if (win->quirks & SWM_Q_XTERM_FONTADJ) {
5909 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
5910 fake_keypress(win, XK_KP_Subtract, ShiftMask);
5911 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
5912 fake_keypress(win, XK_KP_Add, ShiftMask);
5915 ewmh_get_win_state(win);
5916 ewmh_update_actions(win);
5917 ewmh_update_win_state(win, None, _NET_WM_STATE_REMOVE);
5921 bzero(&wc, sizeof wc);
5922 wc.border_width = border_width;
5923 mask = CWBorderWidth;
5924 XConfigureWindow(display, win->id, mask, &wc);
5927 XSelectInput(display, id, EnterWindowMask | FocusChangeMask |
5928 PropertyChangeMask | StructureNotifyMask);
5930 /* floaters need to be mapped if they are in the current workspace */
5931 if ((win->floating || win->transient) && (ws->idx == r->ws->idx))
5932 XMapRaised(display, win->id);
5938 free_window(struct ws_win *win)
5940 DNPRINTF(SWM_D_MISC, "free_window: window: 0x%lx\n", win->id);
5945 /* needed for restart wm */
5946 set_win_state(win, WithdrawnState);
5948 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
5950 if (win->ch.res_class)
5951 XFree(win->ch.res_class);
5952 if (win->ch.res_name)
5953 XFree(win->ch.res_name);
5958 memset(win, 0xff, sizeof *win); /* XXX kill later */
5964 unmanage_window(struct ws_win *win)
5966 struct ws_win *parent;
5971 DNPRINTF(SWM_D_MISC, "unmanage_window: window: 0x%lx\n", win->id);
5973 if (win->transient) {
5974 parent = find_window(win->transient);
5976 parent->child_trans = NULL;
5979 /* focus on root just in case */
5980 XSetInputFocus(display, PointerRoot, PointerRoot, CurrentTime);
5989 TAILQ_REMOVE(&win->ws->winlist, win, entry);
5990 TAILQ_INSERT_TAIL(&win->ws->unmanagedlist, win, entry);
5996 focus_magic(struct ws_win *win)
5998 DNPRINTF(SWM_D_FOCUS, "focus_magic: window: 0x%lx\n", WINID(win));
6003 if (win->child_trans) {
6004 /* win = parent & has a transient so focus on that */
6006 focus_win(win->child_trans);
6007 if (win->child_trans->take_focus)
6008 client_msg(win, takefocus);
6010 /* make sure transient hasn't dissapeared */
6011 if (validate_win(win->child_trans) == 0) {
6012 focus_win(win->child_trans);
6013 if (win->child_trans->take_focus)
6014 client_msg(win->child_trans, takefocus);
6016 win->child_trans = NULL;
6018 if (win->take_focus)
6019 client_msg(win, takefocus);
6025 if (win->take_focus)
6026 client_msg(win, takefocus);
6033 DNPRINTF(SWM_D_EVENT, "expose: window: 0x%lx\n", e->xexpose.window);
6040 XKeyEvent *ev = &e->xkey;
6043 keysym = XKeycodeToKeysym(display, (KeyCode)ev->keycode, 0);
6044 TAILQ_FOREACH(kp, &keys, entry)
6045 if (keysym == kp->keysym
6046 && CLEANMASK(kp->mod) == CLEANMASK(ev->state)
6047 && keyfuncs[kp->funcid].func) {
6048 if (kp->funcid == kf_spawn_custom)
6050 root_to_region(ev->root),
6051 &(keyfuncs[kp->funcid].args),
6055 keyfuncs[kp->funcid].func(
6056 root_to_region(ev->root),
6057 &(keyfuncs[kp->funcid].args)
6063 buttonpress(XEvent *e)
6067 XButtonPressedEvent *ev = &e->xbutton;
6069 if ((win = find_window(ev->window)) == NULL)
6073 action = client_click;
6075 for (i = 0; i < LENGTH(buttons); i++)
6076 if (action == buttons[i].action && buttons[i].func &&
6077 buttons[i].button == ev->button &&
6078 CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
6079 buttons[i].func(win, &buttons[i].args);
6083 configurerequest(XEvent *e)
6085 XConfigureRequestEvent *ev = &e->xconfigurerequest;
6090 if ((win = find_window(ev->window)) == NULL)
6091 if ((win = find_unmanaged_window(ev->window)) == NULL)
6094 DNPRINTF(SWM_D_EVENT, "configurerequest: window: 0x%lx, new: %s\n",
6095 ev->window, YESNO(new));
6098 bzero(&wc, sizeof wc);
6101 wc.width = ev->width;
6102 wc.height = ev->height;
6103 wc.border_width = ev->border_width;
6104 wc.sibling = ev->above;
6105 wc.stack_mode = ev->detail;
6106 XConfigureWindow(display, ev->window, ev->value_mask, &wc);
6108 config_win(win, ev);
6113 configurenotify(XEvent *e)
6117 DNPRINTF(SWM_D_EVENT, "configurenotify: window: 0x%lx\n",
6118 e->xconfigure.window);
6120 win = find_window(e->xconfigure.window);
6122 XGetWMNormalHints(display, win->id, &win->sh, &win->sh_mask);
6126 if (focus_mode == SWM_FOCUS_DEFAULT)
6127 drain_enter_notify();
6132 destroynotify(XEvent *e)
6135 XDestroyWindowEvent *ev = &e->xdestroywindow;
6137 DNPRINTF(SWM_D_EVENT, "destroynotify: window: 0x%lx\n", ev->window);
6139 if ((win = find_window(ev->window)) == NULL) {
6140 if ((win = find_unmanaged_window(ev->window)) == NULL)
6146 /* make sure we focus on something */
6149 unmanage_window(win);
6151 if (focus_mode == SWM_FOCUS_DEFAULT)
6152 drain_enter_notify();
6157 enternotify(XEvent *e)
6159 XCrossingEvent *ev = &e->xcrossing;
6164 Window focus_return;
6165 int revert_to_return;
6167 DNPRINTF(SWM_D_FOCUS, "enternotify: window: 0x%lx, mode: %d, detail: "
6168 "%d, root: 0x%lx, subwindow: 0x%lx, same_screen: %s, focus: %s, "
6169 "state: %d\n", ev->window, ev->mode, ev->detail, ev->root,
6170 ev->subwindow, YESNO(ev->same_screen), YESNO(ev->focus), ev->state);
6172 if (ev->mode != NotifyNormal) {
6173 DNPRINTF(SWM_D_EVENT, "skip enternotify: generated by "
6178 switch (focus_mode) {
6179 case SWM_FOCUS_DEFAULT:
6181 case SWM_FOCUS_FOLLOW:
6183 case SWM_FOCUS_SYNERGY:
6186 * all these checks need to be in this order because the
6187 * XCheckTypedWindowEvent relies on weeding out the previous events
6189 * making this code an option would enable a follow mouse for focus
6194 * state is set when we are switching workspaces and focus is set when
6195 * the window or a subwindow already has focus (occurs during restart).
6197 * Only honor the focus flag if last_focus_event is not FocusOut,
6198 * this allows scrotwm to continue to control focus when another
6199 * program is also playing with it.
6201 if (ev->state || (ev->focus && last_focus_event != FocusOut)) {
6202 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: focus\n");
6207 * happens when a window is created or destroyed and the border
6208 * crosses the mouse pointer and when switching ws
6210 * we need the subwindow test to see if we came from root in order
6211 * to give focus to floaters
6213 if (ev->mode == NotifyNormal && ev->detail == NotifyVirtual &&
6214 ev->subwindow == 0) {
6215 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: NotifyVirtual\n");
6219 /* this window already has focus */
6220 if (ev->mode == NotifyNormal && ev->detail == NotifyInferior) {
6221 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: win has focus\n");
6225 /* this window is being deleted or moved to another ws */
6226 if (XCheckTypedWindowEvent(display, ev->window, ConfigureNotify,
6228 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: configurenotify\n");
6229 XPutBackEvent(display, &cne);
6233 if ((win = find_window(ev->window)) == NULL) {
6234 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: win == NULL\n");
6239 * In fullstack kill all enters unless they come from a different ws
6240 * (i.e. another region) or focus has been grabbed externally.
6242 if (win->ws->cur_layout->flags & SWM_L_FOCUSPREV &&
6243 last_focus_event != FocusOut) {
6244 XGetInputFocus(display, &focus_return, &revert_to_return);
6245 if ((w = find_window(focus_return)) == NULL ||
6247 DNPRINTF(SWM_D_EVENT, "ignoring event: fullstack\n");
6255 if ((win = find_window(ev->window)) == NULL) {
6256 DNPRINTF(SWM_D_EVENT, "skip enternotify: window is NULL\n");
6261 * if we have more enternotifies let them handle it in due time
6263 if (XCheckTypedEvent(display, EnterNotify, &cne) == True) {
6264 DNPRINTF(SWM_D_EVENT,
6265 "ignoring enternotify: got more enternotify\n");
6266 XPutBackEvent(display, &cne);
6273 /* lets us use one switch statement for arbitrary mode/detail combinations */
6274 #define MERGE_MEMBERS(a,b) (((a & 0xffff) << 16) | (b & 0xffff))
6277 focusevent(XEvent *e)
6281 u_int32_t mode_detail;
6282 XFocusChangeEvent *ev = &e->xfocus;
6284 DNPRINTF(SWM_D_EVENT, "focusevent: %s window: 0x%lx mode: %d "
6285 "detail: %d\n", ev->type == FocusIn ? "entering" : "leaving",
6286 ev->window, ev->mode, ev->detail);
6288 if (last_focus_event == ev->type) {
6289 DNPRINTF(SWM_D_FOCUS, "ignoring focusevent: bad ordering\n");
6293 last_focus_event = ev->type;
6294 mode_detail = MERGE_MEMBERS(ev->mode, ev->detail);
6296 switch (mode_detail) {
6297 /* synergy client focus operations */
6298 case MERGE_MEMBERS(NotifyNormal, NotifyNonlinear):
6299 case MERGE_MEMBERS(NotifyNormal, NotifyNonlinearVirtual):
6301 /* synergy server focus operations */
6302 case MERGE_MEMBERS(NotifyWhileGrabbed, NotifyNonlinear):
6304 /* Entering applications like rdesktop that mangle the pointer */
6305 case MERGE_MEMBERS(NotifyNormal, NotifyPointer):
6307 if ((win = find_window(e->xfocus.window)) != NULL && win->ws->r)
6308 XSetWindowBorder(display, win->id,
6309 win->ws->r->s->c[ev->type == FocusIn ?
6310 SWM_S_COLOR_FOCUS : SWM_S_COLOR_UNFOCUS].color);
6313 warnx("ignoring focusevent");
6314 DNPRINTF(SWM_D_FOCUS, "ignoring focusevent\n");
6321 mapnotify(XEvent *e)
6324 XMapEvent *ev = &e->xmap;
6326 DNPRINTF(SWM_D_EVENT, "mapnotify: window: 0x%lx\n", ev->window);
6328 win = manage_window(ev->window);
6330 set_win_state(win, NormalState);
6334 mappingnotify(XEvent *e)
6336 XMappingEvent *ev = &e->xmapping;
6338 XRefreshKeyboardMapping(ev);
6339 if (ev->request == MappingKeyboard)
6344 maprequest(XEvent *e)
6347 struct swm_region *r;
6348 XWindowAttributes wa;
6349 XMapRequestEvent *ev = &e->xmaprequest;
6351 DNPRINTF(SWM_D_EVENT, "maprequest: window: 0x%lx\n",
6352 e->xmaprequest.window);
6354 if (!XGetWindowAttributes(display, ev->window, &wa))
6356 if (wa.override_redirect)
6359 win = manage_window(e->xmaprequest.window);
6361 return; /* can't happen */
6365 /* make new win focused */
6366 r = root_to_region(win->wa.root);
6367 if (win->ws == r->ws)
6372 propertynotify(XEvent *e)
6375 XPropertyEvent *ev = &e->xproperty;
6378 name = XGetAtomName(display, ev->atom);
6379 DNPRINTF(SWM_D_EVENT, "propertynotify: window: 0x%lx, atom: %s\n",
6384 win = find_window(ev->window);
6388 if (ev->state == PropertyDelete && ev->atom == a_swm_iconic) {
6389 update_iconic(win, 0);
6390 XMapRaised(display, win->id);
6398 case XA_WM_NORMAL_HINTS:
6400 XGetWMNormalHints(display, win->id, &win->sh, &mask);
6401 warnx("normal hints: flag 0x%x", win->sh.flags);
6402 if (win->sh.flags & PMinSize) {
6403 WIDTH(win) = win->sh.min_width;
6404 HEIGHT(win) = win->sh.min_height;
6405 warnx("min %d %d", WIDTH(win), HEIGHT(win));
6407 XMoveResizeWindow(display, win->id,
6408 X(win), Y(win), WIDTH(win), HEIGHT(win));
6411 if (title_name_enabled || title_class_enabled)
6415 if (window_name_enabled)
6424 unmapnotify(XEvent *e)
6428 DNPRINTF(SWM_D_EVENT, "unmapnotify: window: 0x%lx\n", e->xunmap.window);
6430 /* determine if we need to help unmanage this window */
6431 win = find_window(e->xunmap.window);
6435 if (getstate(e->xunmap.window) == NormalState) {
6436 unmanage_window(win);
6439 /* giant hack for apps that don't destroy transient windows */
6440 /* eat a bunch of events to prevent remanaging the window */
6442 while (XCheckWindowEvent(display, e->xunmap.window,
6443 EnterWindowMask, &cne))
6445 while (XCheckWindowEvent(display, e->xunmap.window,
6446 StructureNotifyMask, &cne))
6448 while (XCheckWindowEvent(display, e->xunmap.window,
6449 SubstructureNotifyMask, &cne))
6451 /* resend unmap because we ated it */
6452 XUnmapWindow(display, e->xunmap.window);
6455 if (focus_mode == SWM_FOCUS_DEFAULT)
6456 drain_enter_notify();
6460 visibilitynotify(XEvent *e)
6463 struct swm_region *r;
6465 DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: 0x%lx\n",
6466 e->xvisibility.window);
6467 if (e->xvisibility.state == VisibilityUnobscured)
6468 for (i = 0; i < ScreenCount(display); i++)
6469 TAILQ_FOREACH(r, &screens[i].rl, entry)
6470 if (e->xvisibility.window == r->bar_window)
6475 clientmessage(XEvent *e)
6477 XClientMessageEvent *ev;
6482 win = find_window(ev->window);
6486 DNPRINTF(SWM_D_EVENT, "clientmessage: window: 0x%lx, type: %ld\n",
6487 ev->window, ev->message_type);
6489 if (ev->message_type == ewmh[_NET_ACTIVE_WINDOW].atom) {
6490 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_ACTIVE_WINDOW\n");
6493 if (ev->message_type == ewmh[_NET_CLOSE_WINDOW].atom) {
6494 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_CLOSE_WINDOW\n");
6495 if (win->can_delete)
6496 client_msg(win, adelete);
6498 XKillClient(display, win->id);
6500 if (ev->message_type == ewmh[_NET_MOVERESIZE_WINDOW].atom) {
6501 DNPRINTF(SWM_D_EVENT,
6502 "clientmessage: _NET_MOVERESIZE_WINDOW\n");
6503 if (win->floating) {
6504 if (ev->data.l[0] & (1<<8)) /* x */
6505 X(win) = ev->data.l[1];
6506 if (ev->data.l[0] & (1<<9)) /* y */
6507 Y(win) = ev->data.l[2];
6508 if (ev->data.l[0] & (1<<10)) /* width */
6509 WIDTH(win) = ev->data.l[3];
6510 if (ev->data.l[0] & (1<<11)) /* height */
6511 HEIGHT(win) = ev->data.l[4];
6516 /* TODO: Change stack sizes */
6517 /* notify no change was made. */
6518 config_win(win, NULL);
6521 if (ev->message_type == ewmh[_NET_WM_STATE].atom) {
6522 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_WM_STATE\n");
6523 ewmh_update_win_state(win, ev->data.l[1], ev->data.l[0]);
6525 ewmh_update_win_state(win, ev->data.l[2],
6533 xerror_start(Display *d, XErrorEvent *ee)
6540 xerror(Display *d, XErrorEvent *ee)
6542 /* warnx("error: %p %p", display, ee); */
6550 xerrorxlib = XSetErrorHandler(xerror_start);
6552 /* this causes an error if some other window manager is running */
6553 XSelectInput(display, DefaultRootWindow(display),
6554 SubstructureRedirectMask);
6555 XSync(display, False);
6559 XSetErrorHandler(xerror);
6560 XSync(display, False);
6565 new_region(struct swm_screen *s, int x, int y, int w, int h)
6567 struct swm_region *r, *n;
6568 struct workspace *ws = NULL;
6571 DNPRINTF(SWM_D_MISC, "new region: screen[%d]:%dx%d+%d+%d\n",
6572 s->idx, w, h, x, y);
6574 /* remove any conflicting regions */
6575 n = TAILQ_FIRST(&s->rl);
6578 n = TAILQ_NEXT(r, entry);
6579 if (X(r) < (x + w) &&
6580 (X(r) + WIDTH(r)) > x &&
6582 (Y(r) + HEIGHT(r)) > y) {
6583 if (r->ws->r != NULL)
6584 r->ws->old_r = r->ws->r;
6586 XDestroyWindow(display, r->bar_window);
6587 TAILQ_REMOVE(&s->rl, r, entry);
6588 TAILQ_INSERT_TAIL(&s->orl, r, entry);
6592 /* search old regions for one to reuse */
6594 /* size + location match */
6595 TAILQ_FOREACH(r, &s->orl, entry)
6596 if (X(r) == x && Y(r) == y &&
6597 HEIGHT(r) == h && WIDTH(r) == w)
6601 TAILQ_FOREACH(r, &s->orl, entry)
6602 if (HEIGHT(r) == h && WIDTH(r) == w)
6606 TAILQ_REMOVE(&s->orl, r, entry);
6607 /* try to use old region's workspace */
6608 if (r->ws->r == NULL)
6611 if ((r = calloc(1, sizeof(struct swm_region))) == NULL)
6612 err(1, "new_region: calloc: failed to allocate memory "
6615 /* if we don't have a workspace already, find one */
6617 for (i = 0; i < SWM_WS_MAX; i++)
6618 if (s->ws[i].r == NULL) {
6625 errx(1, "new_region: no free workspaces");
6636 TAILQ_INSERT_TAIL(&s->rl, r, entry);
6642 #ifdef SWM_XRR_HAS_CRTC
6644 XRRScreenResources *sr;
6647 #endif /* SWM_XRR_HAS_CRTC */
6648 struct swm_region *r;
6651 if (i >= ScreenCount(display))
6652 errx(1, "scan_xrandr: invalid screen");
6654 /* remove any old regions */
6655 while ((r = TAILQ_FIRST(&screens[i].rl)) != NULL) {
6656 r->ws->old_r = r->ws->r = NULL;
6657 XDestroyWindow(display, r->bar_window);
6658 TAILQ_REMOVE(&screens[i].rl, r, entry);
6659 TAILQ_INSERT_TAIL(&screens[i].orl, r, entry);
6663 /* map virtual screens onto physical screens */
6664 #ifdef SWM_XRR_HAS_CRTC
6665 if (xrandr_support) {
6666 sr = XRRGetScreenResources(display, screens[i].root);
6668 new_region(&screens[i], 0, 0,
6669 DisplayWidth(display, i),
6670 DisplayHeight(display, i));
6674 for (c = 0, ci = NULL; c < ncrtc; c++) {
6675 ci = XRRGetCrtcInfo(display, sr, sr->crtcs[c]);
6676 if (ci->noutput == 0)
6679 if (ci != NULL && ci->mode == None)
6680 new_region(&screens[i], 0, 0,
6681 DisplayWidth(display, i),
6682 DisplayHeight(display, i));
6684 new_region(&screens[i],
6685 ci->x, ci->y, ci->width, ci->height);
6688 XRRFreeCrtcInfo(ci);
6689 XRRFreeScreenResources(sr);
6691 #endif /* SWM_XRR_HAS_CRTC */
6693 new_region(&screens[i], 0, 0, DisplayWidth(display, i),
6694 DisplayHeight(display, i));
6699 screenchange(XEvent *e) {
6700 XRRScreenChangeNotifyEvent *xe = (XRRScreenChangeNotifyEvent *)e;
6701 struct swm_region *r;
6704 DNPRINTF(SWM_D_EVENT, "screenchange: root: 0x%lx\n", xe->root);
6706 if (!XRRUpdateConfiguration(e))
6709 /* silly event doesn't include the screen index */
6710 for (i = 0; i < ScreenCount(display); i++)
6711 if (screens[i].root == xe->root)
6713 if (i >= ScreenCount(display))
6714 errx(1, "screenchange: screen not found");
6716 /* brute force for now, just re-enumerate the regions */
6719 /* add bars to all regions */
6720 for (i = 0; i < ScreenCount(display); i++)
6721 TAILQ_FOREACH(r, &screens[i].rl, entry)
6724 if (focus_mode == SWM_FOCUS_DEFAULT)
6725 drain_enter_notify();
6731 Window d1, d2, *wins = NULL;
6732 XWindowAttributes wa;
6737 for (i = 0; i < ScreenCount(display); i++) {
6738 if (!XQueryTree(display, screens[i].root, &d1, &d2, &wins, &no))
6741 /* attach windows to a region */
6742 /* normal windows */
6743 for (j = 0; j < no; j++) {
6744 if (!XGetWindowAttributes(display, wins[j], &wa) ||
6745 wa.override_redirect ||
6746 XGetTransientForHint(display, wins[j], &d1))
6749 state = getstate(wins[j]);
6750 manage = state == IconicState;
6751 if (wa.map_state == IsViewable || manage)
6752 manage_window(wins[j]);
6754 /* transient windows */
6755 for (j = 0; j < no; j++) {
6756 if (!XGetWindowAttributes(display, wins[j], &wa) ||
6757 wa.override_redirect)
6760 state = getstate(wins[j]);
6761 manage = state == IconicState;
6762 if (XGetTransientForHint(display, wins[j], &d1) &&
6764 manage_window(wins[j]);
6777 int errorbase, major, minor;
6778 struct workspace *ws;
6781 if ((screens = calloc(ScreenCount(display),
6782 sizeof(struct swm_screen))) == NULL)
6783 err(1, "setup_screens: calloc: failed to allocate memory for "
6786 /* initial Xrandr setup */
6787 xrandr_support = XRRQueryExtension(display,
6788 &xrandr_eventbase, &errorbase);
6790 if (XRRQueryVersion(display, &major, &minor) && major < 1)
6793 /* map physical screens */
6794 for (i = 0; i < ScreenCount(display); i++) {
6795 DNPRINTF(SWM_D_WS, "setup_screens: init screen: %d\n", i);
6797 TAILQ_INIT(&screens[i].rl);
6798 TAILQ_INIT(&screens[i].orl);
6799 screens[i].root = RootWindow(display, i);
6801 /* set default colors */
6802 setscreencolor("red", i + 1, SWM_S_COLOR_FOCUS);
6803 setscreencolor("rgb:88/88/88", i + 1, SWM_S_COLOR_UNFOCUS);
6804 setscreencolor("rgb:00/80/80", i + 1, SWM_S_COLOR_BAR_BORDER);
6805 setscreencolor("black", i + 1, SWM_S_COLOR_BAR);
6806 setscreencolor("rgb:a0/a0/a0", i + 1, SWM_S_COLOR_BAR_FONT);
6808 /* create graphics context on screen with default font color */
6809 screens[i].bar_gc = XCreateGC(display, screens[i].root, 0,
6812 XSetForeground(display, screens[i].bar_gc,
6813 screens[i].c[SWM_S_COLOR_BAR_FONT].color);
6815 /* set default cursor */
6816 XDefineCursor(display, screens[i].root,
6817 XCreateFontCursor(display, XC_left_ptr));
6819 /* init all workspaces */
6820 /* XXX these should be dynamically allocated too */
6821 for (j = 0; j < SWM_WS_MAX; j++) {
6822 ws = &screens[i].ws[j];
6828 TAILQ_INIT(&ws->winlist);
6829 TAILQ_INIT(&ws->unmanagedlist);
6831 for (k = 0; layouts[k].l_stack != NULL; k++)
6832 if (layouts[k].l_config != NULL)
6833 layouts[k].l_config(ws,
6834 SWM_ARG_ID_STACKINIT);
6835 ws->cur_layout = &layouts[0];
6836 ws->cur_layout->l_string(ws);
6842 XRRSelectInput(display, screens[i].root,
6843 RRScreenChangeNotifyMask);
6850 if ((bar_fonts = strdup(SWM_BAR_FONTS)) == NULL)
6851 err(1, "setup_globals: strdup: failed to allocate memory.");
6853 if ((spawn_term[0] = strdup("xterm")) == NULL)
6854 err(1, "setup_globals: strdup: failed to allocate memory.");
6856 if ((clock_format = strdup("%a %b %d %R %Z %Y")) == NULL)
6857 err(1, "setup_globals: strdup: failed to allocate memory.");
6864 Atom netwmcheck, netwmname, utf8_string;
6867 /* work around sun jdk bugs, code from wmname */
6868 netwmcheck = XInternAtom(display, "_NET_SUPPORTING_WM_CHECK", False);
6869 netwmname = XInternAtom(display, "_NET_WM_NAME", False);
6870 utf8_string = XInternAtom(display, "UTF8_STRING", False);
6871 for (i = 0; i < ScreenCount(display); i++) {
6872 root = screens[i].root;
6873 win = XCreateSimpleWindow(display,root, 0, 0, 1, 1, 0,
6874 screens[i].c[SWM_S_COLOR_UNFOCUS].color,
6875 screens[i].c[SWM_S_COLOR_UNFOCUS].color);
6877 XChangeProperty(display, root, netwmcheck, XA_WINDOW, 32,
6878 PropModeReplace, (unsigned char *)&win,1);
6879 XChangeProperty(display, win, netwmcheck, XA_WINDOW, 32,
6880 PropModeReplace, (unsigned char *)&win,1);
6881 XChangeProperty(display, win, netwmname, utf8_string, 8,
6882 PropModeReplace, (unsigned char*)"LG3D", strlen("LG3D"));
6887 main(int argc, char *argv[])
6889 struct swm_region *r, *rr;
6890 struct ws_win *winfocus = NULL;
6893 char conf[PATH_MAX], *cfile = NULL;
6898 struct sigaction sact;
6901 warnx("Welcome to scrotwm V%s Build: %s", SCROTWM_VERSION, buildstr);
6902 if (!setlocale(LC_CTYPE, "") || !setlocale(LC_TIME, "") ||
6904 warnx("no locale support");
6906 if (!X_HAVE_UTF8_STRING)
6907 warnx("no UTF-8 support");
6909 if (!(display = XOpenDisplay(0)))
6910 errx(1, "can not open display");
6913 errx(1, "other wm running");
6915 /* handle some signals */
6916 bzero(&sact, sizeof(sact));
6917 sigemptyset(&sact.sa_mask);
6919 sact.sa_handler = sighdlr;
6920 sigaction(SIGINT, &sact, NULL);
6921 sigaction(SIGQUIT, &sact, NULL);
6922 sigaction(SIGTERM, &sact, NULL);
6923 sigaction(SIGHUP, &sact, NULL);
6925 sact.sa_handler = sighdlr;
6926 sact.sa_flags = SA_NOCLDSTOP;
6927 sigaction(SIGCHLD, &sact, NULL);
6929 astate = XInternAtom(display, "WM_STATE", False);
6930 aprot = XInternAtom(display, "WM_PROTOCOLS", False);
6931 adelete = XInternAtom(display, "WM_DELETE_WINDOW", False);
6932 takefocus = XInternAtom(display, "WM_TAKE_FOCUS", False);
6933 a_wmname = XInternAtom(display, "WM_NAME", False);
6934 a_netwmname = XInternAtom(display, "_NET_WM_NAME", False);
6935 a_utf8_string = XInternAtom(display, "UTF8_STRING", False);
6936 a_string = XInternAtom(display, "STRING", False);
6937 a_swm_iconic = XInternAtom(display, "_SWM_ICONIC", False);
6939 /* look for local and global conf file */
6940 pwd = getpwuid(getuid());
6942 errx(1, "invalid user: %d", getuid());
6951 snprintf(conf, sizeof conf, "%s/.%s", pwd->pw_dir, SWM_CONF_FILE);
6952 if (stat(conf, &sb) != -1) {
6953 if (S_ISREG(sb.st_mode))
6956 /* try global conf file */
6957 snprintf(conf, sizeof conf, "/etc/%s", SWM_CONF_FILE);
6958 if (!stat(conf, &sb))
6959 if (S_ISREG(sb.st_mode))
6963 /* load conf (if any) and refresh font color in bar graphics contexts */
6964 if (cfile && conf_load(cfile, SWM_CONF_DEFAULT) == 0)
6965 for (i = 0; i < ScreenCount(display); ++i)
6966 XSetForeground(display, screens[i].bar_gc,
6967 screens[i].c[SWM_S_COLOR_BAR_FONT].color);
6970 /* set some values to work around bad programs */
6972 /* grab existing windows (before we build the bars) */
6975 if (getenv("SWM_STARTED") == NULL)
6976 setenv("SWM_STARTED", "YES", 1);
6978 /* setup all bars */
6979 for (i = 0; i < ScreenCount(display); i++)
6980 TAILQ_FOREACH(r, &screens[i].rl, entry) {
6981 if (winfocus == NULL)
6982 winfocus = TAILQ_FIRST(&r->ws->winlist);
6990 if (focus_mode == SWM_FOCUS_DEFAULT)
6991 drain_enter_notify();
6993 xfd = ConnectionNumber(display);
6995 while (XPending(display)) {
6996 XNextEvent(display, &e);
6999 if (e.type < LASTEvent) {
7000 DNPRINTF(SWM_D_EVENTQ ,"XEvent: handled: %s, "
7001 "window: 0x%lx, type: %s (%d), %d remaining"
7002 "\n", YESNO(handler[e.type]),
7003 e.xany.window, geteventname(&e),
7004 e.type, QLength(display));
7006 if (handler[e.type])
7007 handler[e.type](&e);
7009 DNPRINTF(SWM_D_EVENTQ, "XRandr Event: window: "
7010 "0x%lx, type: %s (%d)\n", e.xany.window,
7011 xrandr_geteventname(&e), e.type);
7013 switch (e.type - xrandr_eventbase) {
7014 case RRScreenChangeNotify:
7023 /* if we are being restarted go focus on first window */
7025 rr = winfocus->ws->r;
7027 /* not a visible window */
7031 /* move pointer to first screen if multi screen */
7032 if (ScreenCount(display) > 1 || outputs > 1)
7033 XWarpPointer(display, None, rr->s[0].root,
7035 Y(rr) + (bar_enabled ? bar_height : 0));
7037 a.id = SWM_ARG_ID_FOCUSCUR;
7047 if (select(xfd + 1, &rd, NULL, NULL, &tv) == -1)
7049 DNPRINTF(SWM_D_MISC, "select failed");
7050 if (restart_wm == 1)
7051 restart(NULL, NULL);
7052 if (search_resp == 1)
7065 for (i = 0; i < ScreenCount(display); ++i)
7066 if (screens[i].bar_gc != NULL)
7067 XFreeGC(display, screens[i].bar_gc);
7069 XFreeFontSet(display, bar_fs);
7070 XCloseDisplay(display);