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>
9 * Copyright (c) 2011-2012 Lawrence Teo <lteo@lteo.net>
10 * Copyright (c) 2011-2012 Tiago Cunha <tcunha@gmx.com>
11 * Copyright (c) 2012 David Hill <dhill@mindcry.org>
13 * Permission to use, copy, modify, and distribute this software for any
14 * purpose with or without fee is hereby granted, provided that the above
15 * copyright notice and this permission notice appear in all copies.
17 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
18 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
20 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
21 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
22 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
23 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
26 * Much code and ideas taken from dwm under the following license:
27 * MIT/X Consortium License
29 * 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
30 * 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
31 * 2006-2007 Jukka Salmi <jukka at salmi dot ch>
32 * 2007 Premysl Hruby <dfenze at gmail dot com>
33 * 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
34 * 2007 Christof Musik <christof at sendfax dot de>
35 * 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
36 * 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
37 * 2008 Martin Hurton <martin dot hurton at gmail dot com>
39 * Permission is hereby granted, free of charge, to any person obtaining a
40 * copy of this software and associated documentation files (the "Software"),
41 * to deal in the Software without restriction, including without limitation
42 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
43 * and/or sell copies of the Software, and to permit persons to whom the
44 * Software is furnished to do so, subject to the following conditions:
46 * The above copyright notice and this permission notice shall be included in
47 * all copies or substantial portions of the Software.
49 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
50 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
51 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
52 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
53 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
54 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
55 * DEALINGS IN THE SOFTWARE.
59 #include <sys/types.h>
63 #include <sys/queue.h>
64 #include <sys/param.h>
65 #include <sys/select.h>
66 #if defined(__linux__)
68 #elif defined(__OpenBSD__)
70 #elif defined(__FreeBSD__)
91 #include <X11/cursorfont.h>
92 #include <X11/extensions/Xrandr.h>
93 #include <X11/Xft/Xft.h>
94 #include <X11/Xlib-xcb.h>
95 #include <xcb/xcb_atom.h>
96 #include <xcb/xcb_aux.h>
97 #include <xcb/xcb_event.h>
98 #include <xcb/xcb_icccm.h>
99 #include <xcb/xcb_keysyms.h>
100 #include <xcb/xtest.h>
101 #include <xcb/randr.h>
109 #ifdef SPECTRWM_BUILDSTR
110 static const char *buildstr = SPECTRWM_BUILDSTR;
112 static const char *buildstr = SPECTRWM_VERSION;
115 #if !defined(__CYGWIN__) /* cygwin chokes on xrandr stuff */
117 # error XRandR versions less than 1.0 are not supported
120 # if RANDR_MAJOR >= 1
121 # if RANDR_MINOR >= 2
122 # define SWM_XRR_HAS_CRTC
125 #endif /* __CYGWIN__ */
127 #ifndef XCB_ICCCM_NUM_WM_HINTS_ELEMENTS
128 #define XCB_ICCCM_SIZE_HINT_P_MIN_SIZE XCB_SIZE_HINT_P_MIN_SIZE
129 #define XCB_ICCCM_SIZE_HINT_P_MAX_SIZE XCB_SIZE_HINT_P_MAX_SIZE
130 #define XCB_ICCCM_SIZE_HINT_P_RESIZE_INC XCB_SIZE_HINT_P_RESIZE_INC
131 #define XCB_ICCCM_WM_HINT_X_URGENCY XCB_WM_HINT_X_URGENCY
132 #define XCB_ICCCM_WM_STATE_ICONIC XCB_WM_STATE_ICONIC
133 #define XCB_ICCCM_WM_STATE_WITHDRAWN XCB_WM_STATE_WITHDRAWN
134 #define XCB_ICCCM_WM_STATE_NORMAL XCB_WM_STATE_NORMAL
135 #define xcb_icccm_get_text_property_reply_t xcb_get_text_property_reply_t
136 #define xcb_icccm_get_text_property_reply_wipe xcb_get_text_property_reply_wipe
137 #define xcb_icccm_get_wm_class xcb_get_wm_class
138 #define xcb_icccm_get_wm_class_reply xcb_get_wm_class_reply
139 #define xcb_icccm_get_wm_class_reply_t xcb_get_wm_class_reply_t
140 #define xcb_icccm_get_wm_class_reply_wipe xcb_get_wm_class_reply_wipe
141 #define xcb_icccm_get_wm_hints xcb_get_wm_hints
142 #define xcb_icccm_get_wm_hints_reply xcb_get_wm_hints_reply
143 #define xcb_icccm_get_wm_name xcb_get_wm_name
144 #define xcb_icccm_get_wm_name_reply xcb_get_wm_name_reply
145 #define xcb_icccm_get_wm_normal_hints xcb_get_wm_normal_hints
146 #define xcb_icccm_get_wm_normal_hints_reply xcb_get_wm_normal_hints_reply
147 #define xcb_icccm_get_wm_protocols xcb_get_wm_protocols
148 #define xcb_icccm_get_wm_protocols_reply xcb_get_wm_protocols_reply
149 #define xcb_icccm_get_wm_protocols_reply_t xcb_get_wm_protocols_reply_t
150 #define xcb_icccm_get_wm_protocols_reply_wipe xcb_get_wm_protocols_reply_wipe
151 #define xcb_icccm_get_wm_transient_for xcb_get_wm_transient_for
152 #define xcb_icccm_get_wm_transient_for_reply xcb_get_wm_transient_for_reply
153 #define xcb_icccm_wm_hints_t xcb_wm_hints_t
156 /*#define SWM_DEBUG*/
158 #define DPRINTF(x...) do { \
160 fprintf(stderr, x); \
162 #define DNPRINTF(n,x...) do { \
163 if (swm_debug & n) { \
164 fprintf(stderr, "%ld ", (long)(time(NULL) - time_started)); \
165 fprintf(stderr, x); \
168 #define SWM_D_MISC 0x0001
169 #define SWM_D_EVENT 0x0002
170 #define SWM_D_WS 0x0004
171 #define SWM_D_FOCUS 0x0008
172 #define SWM_D_MOVE 0x0010
173 #define SWM_D_STACK 0x0020
174 #define SWM_D_MOUSE 0x0040
175 #define SWM_D_PROP 0x0080
176 #define SWM_D_CLASS 0x0100
177 #define SWM_D_KEY 0x0200
178 #define SWM_D_QUIRK 0x0400
179 #define SWM_D_SPAWN 0x0800
180 #define SWM_D_EVENTQ 0x1000
181 #define SWM_D_CONF 0x2000
182 #define SWM_D_BAR 0x4000
183 #define SWM_D_INIT 0x8000
185 u_int32_t swm_debug = 0
204 #define DPRINTF(x...)
205 #define DNPRINTF(n,x...)
208 /* convert 8-bit to 16-bit */
209 #define RGB_8_TO_16(col) ((col) << 8) + (col)
211 #define PIXEL_TO_XRENDERCOLOR(px, xrc) \
212 xrc.red = RGB_8_TO_16((px) >> 16 & 0xff); \
213 xrc.green = RGB_8_TO_16((px) >> 8 & 0xff); \
214 xrc.blue = RGB_8_TO_16((px) & 0xff); \
217 #define LENGTH(x) (int)(sizeof (x) / sizeof (x)[0])
218 #define MODKEY XCB_MOD_MASK_1
219 #define CLEANMASK(mask) ((mask) & ~(numlockmask | XCB_MOD_MASK_LOCK))
220 #define BUTTONMASK (XCB_EVENT_MASK_BUTTON_PRESS | \
221 XCB_EVENT_MASK_BUTTON_RELEASE)
222 #define MOUSEMASK (BUTTONMASK|XCB_EVENT_MASK_POINTER_MOTION)
223 #define SWM_PROPLEN (16)
224 #define SWM_FUNCNAME_LEN (32)
225 #define SWM_KEYS_LEN (255)
226 #define SWM_QUIRK_LEN (64)
227 #define X(r) (r)->g.x
228 #define Y(r) (r)->g.y
229 #define WIDTH(r) (r)->g.w
230 #define HEIGHT(r) (r)->g.h
231 #define BORDER(w) ((w)->bordered ? border_width : 0)
232 #define MAX_X(r) ((r)->g.x + (r)->g.w)
233 #define MAX_Y(r) ((r)->g.y + (r)->g.h)
234 #define SH_MIN(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE
235 #define SH_MIN_W(w) (w)->sh.min_width
236 #define SH_MIN_H(w) (w)->sh.min_height
237 #define SH_MAX(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_MAX_SIZE
238 #define SH_MAX_W(w) (w)->sh.max_width
239 #define SH_MAX_H(w) (w)->sh.max_height
240 #define SH_INC(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC
241 #define SH_INC_W(w) (w)->sh.width_inc
242 #define SH_INC_H(w) (w)->sh.height_inc
243 #define SWM_MAX_FONT_STEPS (3)
244 #define WINID(w) ((w) ? (w)->id : 0)
245 #define YESNO(x) ((x) ? "yes" : "no")
247 #define SWM_FOCUS_DEFAULT (0)
248 #define SWM_FOCUS_FOLLOW (1)
249 #define SWM_FOCUS_MANUAL (2)
251 #define SWM_CONF_DEFAULT (0)
252 #define SWM_CONF_KEYMAPPING (1)
255 #define SWM_LIB "/usr/local/lib/libswmhack.so"
262 xcb_atom_t a_takefocus;
264 xcb_atom_t a_netwmname;
265 xcb_atom_t a_utf8_string;
267 xcb_atom_t a_swm_iconic;
269 volatile sig_atomic_t running = 1;
270 volatile sig_atomic_t restart_wm = 0;
272 /*int last_focus_event = FocusOut;*/
276 int xrandr_eventbase;
277 unsigned int numlockmask = 0;
280 xcb_connection_t *conn;
281 xcb_key_symbols_t *syms;
282 xcb_timestamp_t last_event_time;
285 int cycle_visible = 0;
287 int font_adjusted = 0;
288 unsigned int mod_key = MODKEY;
291 struct swm_region *search_r;
292 int select_list_pipe[2];
293 int select_resp_pipe[2];
295 volatile sig_atomic_t search_resp;
296 int search_resp_action;
298 struct search_window {
299 TAILQ_ENTRY(search_window) entry;
303 xcb_window_t indicator;
305 TAILQ_HEAD(search_winlist, search_window);
306 struct search_winlist search_wl;
311 SWM_SEARCH_UNICONIFY,
312 SWM_SEARCH_NAME_WORKSPACE,
313 SWM_SEARCH_SEARCH_WORKSPACE,
314 SWM_SEARCH_SEARCH_WINDOW
317 #define SWM_STACK_TOP (0)
318 #define SWM_STACK_BOTTOM (1)
319 #define SWM_STACK_ABOVE (2)
320 #define SWM_STACK_BELOW (3)
323 double dialog_ratio = 0.6;
325 #define SWM_BAR_MAX (256)
326 #define SWM_BAR_JUSTIFY_LEFT (0)
327 #define SWM_BAR_JUSTIFY_CENTER (1)
328 #define SWM_BAR_JUSTIFY_RIGHT (2)
329 #define SWM_BAR_OFFSET (4)
330 #define SWM_BAR_FONTS "-*-terminus-medium-*-*-*-12-*-*-*-*-*-*-*," \
331 "-*-profont-*-*-*-*-12-*-*-*-*-*-*-*," \
332 "-*-times-medium-r-*-*-12-*-*-*-*-*-*-*," \
333 "-misc-fixed-medium-r-*-*-12-*-*-*-*-*-*-*," \
334 "-*-*-*-r-*-*-*-*-*-*-*-*-*-*"
336 #ifdef X_HAVE_UTF8_STRING
337 #define DRAWSTRING(x...) Xutf8DrawString(x)
339 #define DRAWSTRING(x...) XmbDrawString(x)
342 char *bar_argv[] = { NULL, NULL };
344 unsigned char bar_ext[SWM_BAR_MAX];
345 char bar_vertext[SWM_BAR_MAX];
347 sig_atomic_t bar_alarm = 0;
350 int bar_border_width = 1;
351 int bar_at_bottom = 0;
353 int bar_extra_running = 0;
356 int bar_justify = SWM_BAR_JUSTIFY_LEFT;
357 char *bar_format = NULL;
358 int stack_enabled = 1;
359 int clock_enabled = 1;
360 int urgent_enabled = 0;
361 char *clock_format = NULL;
362 int title_name_enabled = 0;
363 int title_class_enabled = 0;
364 int window_name_enabled = 0;
365 int focus_mode = SWM_FOCUS_DEFAULT;
366 int focus_close = SWM_STACK_BELOW;
367 int focus_close_wrap = 1;
368 int focus_default = SWM_STACK_TOP;
369 int spawn_position = SWM_STACK_TOP;
370 int disable_border = 0;
371 int border_width = 1;
372 int verbose_layout = 0;
376 XFontSetExtents *bar_fs_extents;
378 int bar_font_legacy = 1;
380 XftColor bar_font_color;
383 /* layout manager data */
384 struct swm_geometry {
397 struct swm_geometry g;
400 /* virtual "screens" */
402 TAILQ_ENTRY(swm_region) entry;
403 struct swm_geometry g;
404 struct workspace *ws; /* current workspace on this region */
405 struct workspace *ws_prior; /* prior workspace on this region */
406 struct swm_screen *s; /* screen idx */
409 TAILQ_HEAD(swm_region_list, swm_region);
412 TAILQ_ENTRY(ws_win) entry;
414 xcb_window_t transient;
415 struct ws_win *focus_child; /* focus on child transient */
416 struct swm_geometry g; /* current geometry */
417 struct swm_geometry g_float; /* region coordinates */
418 int g_floatvalid; /* g_float geometry validity */
419 int floatmaxed; /* whether maxed by max_stack */
425 unsigned int ewmh_flags;
426 int font_size_boundary[SWM_MAX_FONT_STEPS];
432 unsigned long quirks;
433 struct workspace *ws; /* always valid */
434 struct swm_screen *s; /* always valid, never changes */
435 xcb_get_geometry_reply_t *wa;
437 xcb_icccm_get_wm_class_reply_t ch;
438 xcb_icccm_wm_hints_t hints;
440 TAILQ_HEAD(ws_win_list, ws_win);
444 TAILQ_ENTRY(pid_e) entry;
448 TAILQ_HEAD(pid_list, pid_e);
449 struct pid_list pidlist = TAILQ_HEAD_INITIALIZER(pidlist);
451 /* layout handlers */
453 void vertical_config(struct workspace *, int);
454 void vertical_stack(struct workspace *, struct swm_geometry *);
455 void horizontal_config(struct workspace *, int);
456 void horizontal_stack(struct workspace *, struct swm_geometry *);
457 void max_stack(struct workspace *, struct swm_geometry *);
458 void plain_stacker(struct workspace *);
459 void fancy_stacker(struct workspace *);
462 void (*l_stack)(struct workspace *, struct swm_geometry *);
463 void (*l_config)(struct workspace *, int);
465 #define SWM_L_FOCUSPREV (1<<0)
466 #define SWM_L_MAPONFOCUS (1<<1)
467 void (*l_string)(struct workspace *);
469 /* stack, configure */
470 { vertical_stack, vertical_config, 0, plain_stacker },
471 { horizontal_stack, horizontal_config, 0, plain_stacker },
473 SWM_L_MAPONFOCUS | SWM_L_FOCUSPREV, plain_stacker },
474 { NULL, NULL, 0, NULL },
477 /* position of max_stack mode in the layouts array, index into layouts! */
478 #define SWM_V_STACK (0)
479 #define SWM_H_STACK (1)
480 #define SWM_MAX_STACK (2)
482 #define SWM_H_SLICE (32)
483 #define SWM_V_SLICE (32)
485 /* define work spaces */
487 int idx; /* workspace index */
488 char *name; /* workspace name */
489 int always_raise; /* raise windows on focus */
490 struct layout *cur_layout; /* current layout handlers */
491 struct ws_win *focus; /* may be NULL */
492 struct ws_win *focus_prev; /* may be NULL */
493 struct swm_region *r; /* may be NULL */
494 struct swm_region *old_r; /* may be NULL */
495 struct ws_win_list winlist; /* list of windows in ws */
496 struct ws_win_list unmanagedlist; /* list of dead windows in ws */
497 char stacker[10]; /* display stacker and layout */
501 int horizontal_msize;
503 int horizontal_stacks;
514 SWM_S_COLOR_BAR_BORDER,
515 SWM_S_COLOR_BAR_FONT,
521 /* physical screen mapping */
522 #define SWM_WS_MAX (22) /* hard limit */
523 int workspace_limit = 10; /* soft limit */
526 int idx; /* screen index */
527 struct swm_region_list rl; /* list of regions on this screen */
528 struct swm_region_list orl; /* list of old regions */
530 struct workspace ws[SWM_WS_MAX];
536 } c[SWM_S_COLOR_MAX];
538 xcb_gcontext_t bar_gc;
541 struct swm_screen *screens;
543 /* args to functions */
546 #define SWM_ARG_ID_FOCUSNEXT (0)
547 #define SWM_ARG_ID_FOCUSPREV (1)
548 #define SWM_ARG_ID_FOCUSMAIN (2)
549 #define SWM_ARG_ID_SWAPNEXT (10)
550 #define SWM_ARG_ID_SWAPPREV (11)
551 #define SWM_ARG_ID_SWAPMAIN (12)
552 #define SWM_ARG_ID_MOVELAST (13)
553 #define SWM_ARG_ID_MASTERSHRINK (20)
554 #define SWM_ARG_ID_MASTERGROW (21)
555 #define SWM_ARG_ID_MASTERADD (22)
556 #define SWM_ARG_ID_MASTERDEL (23)
557 #define SWM_ARG_ID_FLIPLAYOUT (24)
558 #define SWM_ARG_ID_STACKRESET (30)
559 #define SWM_ARG_ID_STACKINIT (31)
560 #define SWM_ARG_ID_CYCLEWS_UP (40)
561 #define SWM_ARG_ID_CYCLEWS_DOWN (41)
562 #define SWM_ARG_ID_CYCLESC_UP (42)
563 #define SWM_ARG_ID_CYCLESC_DOWN (43)
564 #define SWM_ARG_ID_CYCLEWS_UP_ALL (44)
565 #define SWM_ARG_ID_CYCLEWS_DOWN_ALL (45)
566 #define SWM_ARG_ID_STACKINC (50)
567 #define SWM_ARG_ID_STACKDEC (51)
568 #define SWM_ARG_ID_SS_ALL (60)
569 #define SWM_ARG_ID_SS_WINDOW (61)
570 #define SWM_ARG_ID_DONTCENTER (70)
571 #define SWM_ARG_ID_CENTER (71)
572 #define SWM_ARG_ID_KILLWINDOW (80)
573 #define SWM_ARG_ID_DELETEWINDOW (81)
574 #define SWM_ARG_ID_WIDTHGROW (90)
575 #define SWM_ARG_ID_WIDTHSHRINK (91)
576 #define SWM_ARG_ID_HEIGHTGROW (92)
577 #define SWM_ARG_ID_HEIGHTSHRINK (93)
578 #define SWM_ARG_ID_MOVEUP (100)
579 #define SWM_ARG_ID_MOVEDOWN (101)
580 #define SWM_ARG_ID_MOVELEFT (102)
581 #define SWM_ARG_ID_MOVERIGHT (103)
587 TAILQ_ENTRY(quirk) entry;
591 #define SWM_Q_FLOAT (1<<0) /* float this window */
592 #define SWM_Q_TRANSSZ (1<<1) /* transiend window size too small */
593 #define SWM_Q_ANYWHERE (1<<2) /* don't position this window */
594 #define SWM_Q_XTERM_FONTADJ (1<<3) /* adjust xterm fonts when resizing */
595 #define SWM_Q_FULLSCREEN (1<<4) /* remove border */
596 #define SWM_Q_FOCUSPREV (1<<5) /* focus on caller */
598 TAILQ_HEAD(quirk_list, quirk);
599 struct quirk_list quirks = TAILQ_HEAD_INITIALIZER(quirks);
602 * Supported EWMH hints should be added to
603 * both the enum and the ewmh array
608 _NET_MOVERESIZE_WINDOW,
609 _NET_WM_ACTION_ABOVE,
610 _NET_WM_ACTION_CLOSE,
611 _NET_WM_ACTION_FULLSCREEN,
613 _NET_WM_ACTION_RESIZE,
614 _NET_WM_ALLOWED_ACTIONS,
618 _NET_WM_STATE_FULLSCREEN,
619 _NET_WM_STATE_HIDDEN,
620 _NET_WM_STATE_MAXIMIZED_HORZ,
621 _NET_WM_STATE_MAXIMIZED_VERT,
622 _NET_WM_STATE_SKIP_PAGER,
623 _NET_WM_STATE_SKIP_TASKBAR,
625 _NET_WM_WINDOW_TYPE_DIALOG,
626 _NET_WM_WINDOW_TYPE_DOCK,
627 _NET_WM_WINDOW_TYPE_NORMAL,
628 _NET_WM_WINDOW_TYPE_SPLASH,
629 _NET_WM_WINDOW_TYPE_TOOLBAR,
630 _NET_WM_WINDOW_TYPE_UTILITY,
631 _SWM_WM_STATE_MANUAL,
638 } ewmh[SWM_EWMH_HINT_MAX] = {
639 /* must be in same order as in the enum */
640 {"_NET_ACTIVE_WINDOW", XCB_ATOM_NONE},
641 {"_NET_CLOSE_WINDOW", XCB_ATOM_NONE},
642 {"_NET_MOVERESIZE_WINDOW", XCB_ATOM_NONE},
643 {"_NET_WM_ACTION_ABOVE", XCB_ATOM_NONE},
644 {"_NET_WM_ACTION_CLOSE", XCB_ATOM_NONE},
645 {"_NET_WM_ACTION_FULLSCREEN", XCB_ATOM_NONE},
646 {"_NET_WM_ACTION_MOVE", XCB_ATOM_NONE},
647 {"_NET_WM_ACTION_RESIZE", XCB_ATOM_NONE},
648 {"_NET_WM_ALLOWED_ACTIONS", XCB_ATOM_NONE},
649 {"_NET_WM_NAME", XCB_ATOM_NONE},
650 {"_NET_WM_STATE", XCB_ATOM_NONE},
651 {"_NET_WM_STATE_ABOVE", XCB_ATOM_NONE},
652 {"_NET_WM_STATE_FULLSCREEN", XCB_ATOM_NONE},
653 {"_NET_WM_STATE_HIDDEN", XCB_ATOM_NONE},
654 {"_NET_WM_STATE_MAXIMIZED_HORZ", XCB_ATOM_NONE},
655 {"_NET_WM_STATE_MAXIMIZED_VERT", XCB_ATOM_NONE},
656 {"_NET_WM_STATE_SKIP_PAGER", XCB_ATOM_NONE},
657 {"_NET_WM_STATE_SKIP_TASKBAR", XCB_ATOM_NONE},
658 {"_NET_WM_WINDOW_TYPE", XCB_ATOM_NONE},
659 {"_NET_WM_WINDOW_TYPE_DIALOG", XCB_ATOM_NONE},
660 {"_NET_WM_WINDOW_TYPE_DOCK", XCB_ATOM_NONE},
661 {"_NET_WM_WINDOW_TYPE_NORMAL", XCB_ATOM_NONE},
662 {"_NET_WM_WINDOW_TYPE_SPLASH", XCB_ATOM_NONE},
663 {"_NET_WM_WINDOW_TYPE_TOOLBAR", XCB_ATOM_NONE},
664 {"_NET_WM_WINDOW_TYPE_UTILITY", XCB_ATOM_NONE},
665 {"_SWM_WM_STATE_MANUAL", XCB_ATOM_NONE},
668 /* function prototypes */
669 void buttonpress(xcb_button_press_event_t *);
670 void check_conn(void);
671 void clientmessage(xcb_client_message_event_t *);
672 int conf_load(char *, int);
673 void configurenotify(xcb_configure_notify_event_t *);
674 void configurerequest(xcb_configure_request_event_t *);
675 void constrain_window(struct ws_win *, struct swm_region *, int);
676 void destroynotify(xcb_destroy_notify_event_t *);
677 void enternotify(xcb_enter_notify_event_t *);
678 void event_drain(uint8_t);
679 void event_error(xcb_generic_error_t *);
680 void event_handle(xcb_generic_event_t *);
681 char *expand_tilde(char *);
682 void expose(xcb_expose_event_t *);
683 struct ws_win *find_window(xcb_window_t);
684 int floating_toggle_win(struct ws_win *);
685 void focus(struct swm_region *, union arg *);
686 void focus_flush(void);
687 struct ws_win *get_focus_magic(struct ws_win *);
688 struct ws_win *get_focus_prev(struct ws_win *);
689 void focus_win(struct ws_win *);
691 void focusin(xcb_focus_in_event_t *);
693 xcb_atom_t get_atom_from_string(const char *);
695 char *get_atom_name(xcb_atom_t);
696 char *get_notify_detail_label(uint8_t);
697 char *get_notify_mode_label(uint8_t);
699 struct ws_win *get_region_focus(struct swm_region *);
700 xcb_screen_t *get_screen(int);
701 char *get_win_name(xcb_window_t);
702 uint32_t getstate(xcb_window_t);
703 void grabbuttons(struct ws_win *);
704 void keypress(xcb_key_press_event_t *);
706 void leavenotify(xcb_leave_notify_event_t *);
708 void load_float_geom(struct ws_win *, struct swm_region *);
709 struct ws_win *manage_window(xcb_window_t, uint16_t);
710 void map_window(struct ws_win *);
711 void mapnotify(xcb_map_notify_event_t *);
712 void mappingnotify(xcb_mapping_notify_event_t *);
713 void maprequest(xcb_map_request_event_t *);
714 void new_region(struct swm_screen *, int, int, int, int);
715 int parse_rgb(const char *, uint16_t *, uint16_t *, uint16_t *);
716 void propertynotify(xcb_property_notify_event_t *);
717 void spawn_select(struct swm_region *, union arg *, char *, int *);
718 void screenchange(xcb_randr_screen_change_notify_event_t *);
719 void shutdown_cleanup(void);
720 void store_float_geom(struct ws_win *, struct swm_region *);
721 void unmanage_window(struct ws_win *);
722 void unmapnotify(xcb_unmap_notify_event_t *);
723 void unfocus_win(struct ws_win *);
724 void update_window(struct ws_win *);
725 /*void visibilitynotify(xcb_visibility_notify_event_t *);*/
728 expand_tilde(char *s)
737 errx(1, "expand_tilde: NULL string.");
746 if ((max = sysconf(_SC_LOGIN_NAME_MAX)) == -1)
747 errx(1, "expand_tilde: sysconf");
749 if ((user = calloc(1, max + 1)) == NULL)
750 errx(1, "expand_tilde: calloc");
752 for (i = 0; s[i] != '/' && s[i] != '\0'; ++i)
757 ppwd = strlen(user) == 0 ? getpwuid(getuid()) : getpwnam(user);
761 if (asprintf(&result, "%s%s", ppwd->pw_dir, s) == -1)
765 errx(1, "expand_tilde: failed to allocate memory.");
771 parse_rgb(const char *rgb, uint16_t *rr, uint16_t *gg, uint16_t *bb)
773 unsigned int tmpr, tmpg, tmpb;
775 if (sscanf(rgb, "rgb:%x/%x/%x", &tmpr, &tmpg, &tmpb) != 3)
778 *rr = RGB_8_TO_16(tmpr);
779 *gg = RGB_8_TO_16(tmpg);
780 *bb = RGB_8_TO_16(tmpb);
786 get_screen(int screen)
788 const xcb_setup_t *r;
789 xcb_screen_iterator_t iter;
791 if ((r = xcb_get_setup(conn)) == NULL) {
792 DNPRINTF(SWM_D_MISC, "get_screen: xcb_get_setup\n");
796 iter = xcb_setup_roots_iterator(r);
797 for (; iter.rem; --screen, xcb_screen_next(&iter))
807 if (focus_mode == SWM_FOCUS_DEFAULT)
808 event_drain(XCB_ENTER_NOTIFY);
814 get_atom_from_string(const char *str)
816 xcb_intern_atom_cookie_t c;
817 xcb_intern_atom_reply_t *r;
820 c = xcb_intern_atom(conn, 0, strlen(str), str);
821 r = xcb_intern_atom_reply(conn, c, NULL);
829 return (XCB_ATOM_NONE);
833 update_iconic(struct ws_win *win, int newv)
840 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
841 a_swm_iconic, XCB_ATOM_INTEGER, 32, 1, &v);
843 xcb_delete_property(conn, win->id, a_swm_iconic);
847 get_swm_iconic(struct ws_win *win)
850 xcb_get_property_reply_t *pr = NULL;
853 pr = xcb_get_property_reply(conn,
854 xcb_get_property(conn, 0, win->id, a_swm_iconic,
855 XCB_ATOM_INTEGER, 0, 1), NULL);
858 if (pr->type != XCB_ATOM_INTEGER || pr->format != 32)
860 v = *((int32_t *)xcb_get_property_value(pr));
871 int i, j, num_screens;
873 sup_list = get_atom_from_string("_NET_SUPPORTED");
875 for (i = 0; i < LENGTH(ewmh); i++)
876 ewmh[i].atom = get_atom_from_string(ewmh[i].name);
878 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
879 for (i = 0; i < num_screens; i++) {
880 /* Support check window will be created by workaround(). */
882 /* Report supported atoms */
883 xcb_delete_property(conn, screens[i].root, sup_list);
884 for (j = 0; j < LENGTH(ewmh); j++)
885 xcb_change_property(conn, XCB_PROP_MODE_APPEND,
886 screens[i].root, sup_list, XCB_ATOM_ATOM, 32, 1,
895 xcb_atom_t sup_check, sup_list;
897 xcb_get_property_cookie_t pc;
898 xcb_get_property_reply_t *pr;
900 sup_check = get_atom_from_string("_NET_SUPPORTING_WM_CHECK");
901 sup_list = get_atom_from_string("_NET_SUPPORTED");
902 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
904 for (i = 0; i < num_screens; i++) {
905 /* Get the support check window and destroy it */
906 pc = xcb_get_property(conn, 0, screens[i].root, sup_check,
907 XCB_ATOM_WINDOW, 0, 1);
908 pr = xcb_get_property_reply(conn, pc, NULL);
911 if (pr->format == sup_check) {
912 id = *((xcb_window_t *)xcb_get_property_value(pr));
914 xcb_destroy_window(conn, id);
915 xcb_delete_property(conn, screens[i].root, sup_check);
916 xcb_delete_property(conn, screens[i].root, sup_list);
923 ewmh_autoquirk(struct ws_win *win)
927 xcb_get_property_cookie_t c;
928 xcb_get_property_reply_t *r;
930 c = xcb_get_property(conn, 0, win->id,
931 ewmh[_NET_WM_WINDOW_TYPE].atom, XCB_ATOM_ATOM, 0, UINT32_MAX);
932 r = xcb_get_property_reply(conn, c, NULL);
936 n = xcb_get_property_value_length(r);
937 type = xcb_get_property_value(r);
939 for (i = 0; i < n; i++) {
940 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_NORMAL].atom)
942 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_DOCK].atom ||
943 type[i] == ewmh[_NET_WM_WINDOW_TYPE_TOOLBAR].atom ||
944 type[i] == ewmh[_NET_WM_WINDOW_TYPE_UTILITY].atom) {
946 win->quirks = SWM_Q_FLOAT | SWM_Q_ANYWHERE;
949 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_SPLASH].atom ||
950 type[i] == ewmh[_NET_WM_WINDOW_TYPE_DIALOG].atom) {
952 win->quirks = SWM_Q_FLOAT;
959 #define SWM_EWMH_ACTION_COUNT_MAX (6)
960 #define EWMH_F_FULLSCREEN (1<<0)
961 #define EWMH_F_ABOVE (1<<1)
962 #define EWMH_F_HIDDEN (1<<2)
963 #define EWMH_F_SKIP_PAGER (1<<3)
964 #define EWMH_F_SKIP_TASKBAR (1<<4)
965 #define SWM_F_MANUAL (1<<5)
968 ewmh_set_win_fullscreen(struct ws_win *win, int fs)
976 DNPRINTF(SWM_D_MISC, "ewmh_set_win_fullscreen: window: 0x%x, "
977 "fullscreen %s\n", win->id, YESNO(fs));
980 if (!win->g_floatvalid)
981 store_float_geom(win, win->ws->r);
983 win->g = win->ws->r->g;
986 load_float_geom(win, win->ws->r);
993 ewmh_update_actions(struct ws_win *win)
995 xcb_atom_t actions[SWM_EWMH_ACTION_COUNT_MAX];
1001 actions[n++] = ewmh[_NET_WM_ACTION_CLOSE].atom;
1003 if (win->floating) {
1004 actions[n++] = ewmh[_NET_WM_ACTION_MOVE].atom;
1005 actions[n++] = ewmh[_NET_WM_ACTION_RESIZE].atom;
1006 actions[n++] = ewmh[_NET_WM_ACTION_ABOVE].atom;
1009 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
1010 ewmh[_NET_WM_ALLOWED_ACTIONS].atom, XCB_ATOM_ATOM, 32, 1, actions);
1013 #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
1014 #define _NET_WM_STATE_ADD 1 /* add/set property */
1015 #define _NET_WM_STATE_TOGGLE 2 /* toggle property */
1018 ewmh_update_win_state(struct ws_win *win, xcb_atom_t state, long action)
1020 unsigned int mask = 0;
1021 unsigned int changed = 0;
1022 unsigned int orig_flags;
1027 DNPRINTF(SWM_D_PROP, "ewmh_update_win_state: window: 0x%x, state: %ld, "
1028 "action: %ld\n", win->id, (unsigned long)state, action);
1030 if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
1031 mask = EWMH_F_FULLSCREEN;
1032 else if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
1033 mask = EWMH_F_ABOVE;
1034 else if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
1035 mask = SWM_F_MANUAL;
1036 else if (state == ewmh[_NET_WM_STATE_SKIP_PAGER].atom)
1037 mask = EWMH_F_SKIP_PAGER;
1038 else if (state == ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom)
1039 mask = EWMH_F_SKIP_TASKBAR;
1041 orig_flags = win->ewmh_flags;
1044 case _NET_WM_STATE_REMOVE:
1045 win->ewmh_flags &= ~mask;
1047 case _NET_WM_STATE_ADD:
1048 win->ewmh_flags |= mask;
1050 case _NET_WM_STATE_TOGGLE:
1051 win->ewmh_flags ^= mask;
1055 changed = (win->ewmh_flags & mask) ^ (orig_flags & mask) ? 1 : 0;
1057 if (state == ewmh[_NET_WM_STATE_ABOVE].atom) {
1058 if (changed && !floating_toggle_win(win))
1059 win->ewmh_flags = orig_flags; /* revert */
1060 } else if (state == ewmh[_SWM_WM_STATE_MANUAL].atom) {
1062 win->manual = (win->ewmh_flags & SWM_F_MANUAL) != 0;
1063 } else if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom) {
1064 if (changed && !ewmh_set_win_fullscreen(win,
1065 win->ewmh_flags & EWMH_F_FULLSCREEN))
1066 win->ewmh_flags = orig_flags; /* revert */
1069 xcb_delete_property(conn, win->id, ewmh[_NET_WM_STATE].atom);
1071 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
1072 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1073 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1074 &ewmh[_NET_WM_STATE_FULLSCREEN].atom);
1075 else if (win->ewmh_flags & EWMH_F_SKIP_PAGER)
1076 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1077 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1078 &ewmh[_NET_WM_STATE_SKIP_PAGER].atom);
1079 else if (win->ewmh_flags & EWMH_F_SKIP_TASKBAR)
1080 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1081 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1082 &ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom);
1083 else if (win->ewmh_flags & EWMH_F_ABOVE)
1084 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1085 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1086 &ewmh[_NET_WM_STATE_ABOVE].atom);
1087 else if (win->ewmh_flags & SWM_F_MANUAL)
1088 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1089 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1090 &ewmh[_SWM_WM_STATE_MANUAL].atom);
1094 ewmh_get_win_state(struct ws_win *win)
1097 xcb_get_property_cookie_t c;
1098 xcb_get_property_reply_t *r;
1104 win->ewmh_flags = 0;
1106 win->ewmh_flags |= EWMH_F_ABOVE;
1108 win->ewmh_flags |= SWM_F_MANUAL;
1110 c = xcb_get_property(conn, 0, win->id, ewmh[_NET_WM_STATE].atom,
1111 XCB_ATOM_ATOM, 0, UINT32_MAX);
1112 r = xcb_get_property_reply(conn, c, NULL);
1116 states = xcb_get_property_value(r);
1117 n = xcb_get_property_value_length(r);
1119 for (i = 0; i < n; i++)
1120 ewmh_update_win_state(win, states[i], _NET_WM_STATE_ADD);
1128 dumpwins(struct swm_region *r, union arg *args)
1132 xcb_get_window_attributes_cookie_t c;
1133 xcb_get_window_attributes_reply_t *wa;
1135 /* suppress unused warning since var is needed */
1138 if (r->ws == NULL) {
1139 warnx("dumpwins: invalid workspace");
1143 warnx("=== managed window list ws %02d ===", r->ws->idx);
1144 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
1145 state = getstate(win->id);
1146 c = xcb_get_window_attributes(conn, win->id);
1147 wa = xcb_get_window_attributes_reply(conn, c, NULL);
1149 warnx("window: 0x%x, map_state: %d, state: %u, "
1150 "transient: 0x%x", win->id, wa->map_state,
1151 state, win->transient);
1154 warnx("window: 0x%x, failed xcb_get_window_attributes",
1158 warnx("===== unmanaged window list =====");
1159 TAILQ_FOREACH(win, &r->ws->unmanagedlist, entry) {
1160 state = getstate(win->id);
1161 c = xcb_get_window_attributes(conn, win->id);
1162 wa = xcb_get_window_attributes_reply(conn, c, NULL);
1164 warnx("window: 0x%x, map_state: %d, state: %u, "
1165 "transient: 0x%x", win->id, wa->map_state,
1166 state, win->transient);
1169 warnx("window: 0x%x, failed xcb_get_window_attributes",
1173 warnx("=================================");
1177 dumpwins(struct swm_region *r, union arg *s)
1182 #endif /* SWM_DEBUG */
1187 int saved_errno, status;
1190 saved_errno = errno;
1194 while ((pid = waitpid(WAIT_ANY, &status, WNOHANG)) != 0) {
1199 if (errno != ECHILD)
1200 warn("sighdlr: waitpid");
1201 #endif /* SWM_DEBUG */
1204 if (pid == searchpid)
1208 if (WIFEXITED(status)) {
1209 if (WEXITSTATUS(status) != 0)
1210 warnx("sighdlr: child exit status: %d",
1211 WEXITSTATUS(status));
1213 warnx("sighdlr: child is terminated "
1215 #endif /* SWM_DEBUG */
1229 errno = saved_errno;
1235 struct pid_e *p = NULL;
1237 DNPRINTF(SWM_D_MISC, "find_pid: %d\n", pid);
1242 TAILQ_FOREACH(p, &pidlist, entry) {
1251 name_to_pixel(const char *colorname)
1253 uint32_t result = 0;
1254 char cname[32] = "#";
1255 xcb_screen_t *screen;
1256 xcb_colormap_t cmap;
1257 xcb_alloc_color_reply_t *cr;
1258 xcb_alloc_named_color_reply_t *nr;
1259 uint16_t rr, gg, bb;
1261 screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
1262 cmap = screen->default_colormap;
1264 /* color is in format rgb://rr/gg/bb */
1265 if (strncmp(colorname, "rgb:", 4) == 0) {
1266 if (parse_rgb(colorname, &rr, &gg, &bb) == -1)
1267 warnx("could not parse rgb %s", colorname);
1269 cr = xcb_alloc_color_reply(conn,
1270 xcb_alloc_color(conn, cmap, rr, gg, bb),
1276 warnx("color '%s' not found", colorname);
1279 nr = xcb_alloc_named_color_reply(conn,
1280 xcb_alloc_named_color(conn, cmap, strlen(colorname),
1283 strlcat(cname, colorname + 2, sizeof cname - 1);
1284 nr = xcb_alloc_named_color_reply(conn,
1285 xcb_alloc_named_color(conn, cmap, strlen(cname),
1292 warnx("color '%s' not found", colorname);
1299 setscreencolor(char *val, int i, int c)
1303 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1304 if (i > 0 && i <= num_screens) {
1305 screens[i - 1].c[c].pixel = name_to_pixel(val);
1306 free(screens[i - 1].c[c].name);
1307 if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
1309 } else if (i == -1) {
1310 for (i = 0; i < num_screens; i++) {
1311 screens[i].c[c].pixel = name_to_pixel(val);
1312 free(screens[i].c[c].name);
1313 if ((screens[i].c[c].name = strdup(val)) == NULL)
1317 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1322 fancy_stacker(struct workspace *ws)
1324 strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1325 if (ws->cur_layout->l_stack == vertical_stack)
1326 snprintf(ws->stacker, sizeof ws->stacker,
1327 ws->l_state.vertical_flip ? "[%d>%d]" : "[%d|%d]",
1328 ws->l_state.vertical_mwin, ws->l_state.vertical_stacks);
1329 if (ws->cur_layout->l_stack == horizontal_stack)
1330 snprintf(ws->stacker, sizeof ws->stacker,
1331 ws->l_state.horizontal_flip ? "[%dv%d]" : "[%d-%d]",
1332 ws->l_state.horizontal_mwin, ws->l_state.horizontal_stacks);
1336 plain_stacker(struct workspace *ws)
1338 strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1339 if (ws->cur_layout->l_stack == vertical_stack)
1340 strlcpy(ws->stacker, ws->l_state.vertical_flip ? "[>]" : "[|]",
1341 sizeof ws->stacker);
1342 if (ws->cur_layout->l_stack == horizontal_stack)
1343 strlcpy(ws->stacker, ws->l_state.horizontal_flip ? "[v]" : "[-]",
1344 sizeof ws->stacker);
1348 custom_region(char *val)
1350 unsigned int x, y, w, h;
1351 int sidx, num_screens;
1352 xcb_screen_t *screen;
1354 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1355 if (sscanf(val, "screen[%d]:%ux%u+%u+%u", &sidx, &w, &h, &x, &y) != 5)
1356 errx(1, "invalid custom region, "
1357 "should be 'screen[<n>]:<n>x<n>+<n>+<n>");
1358 if (sidx < 1 || sidx > num_screens)
1359 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1363 if ((screen = get_screen(sidx)) == NULL)
1364 errx(1, "ERROR: can't get screen %d.", sidx);
1367 errx(1, "region %ux%u+%u+%u too small", w, h, x, y);
1369 if (x > screen->width_in_pixels ||
1370 y > screen->height_in_pixels ||
1371 w + x > screen->width_in_pixels ||
1372 h + y > screen->height_in_pixels) {
1373 warnx("ignoring region %ux%u+%u+%u - not within screen "
1374 "boundaries (%ux%u)", w, h, x, y,
1375 screen->width_in_pixels, screen->height_in_pixels);
1379 new_region(&screens[sidx], x, y, w, h);
1383 socket_setnonblock(int fd)
1387 if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
1388 err(1, "fcntl F_GETFL");
1389 flags |= O_NONBLOCK;
1390 if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
1391 err(1, "fcntl F_SETFL");
1395 bar_print_legacy(struct swm_region *r, const char *s)
1397 xcb_rectangle_t rect;
1402 XRectangle ibox, lbox;
1406 XmbTextExtents(bar_fs, s, len, &ibox, &lbox);
1408 switch (bar_justify) {
1409 case SWM_BAR_JUSTIFY_LEFT:
1412 case SWM_BAR_JUSTIFY_CENTER:
1413 x = (WIDTH(r) - lbox.width) / 2;
1415 case SWM_BAR_JUSTIFY_RIGHT:
1416 x = WIDTH(r) - lbox.width - SWM_BAR_OFFSET;
1420 if (x < SWM_BAR_OFFSET)
1425 rect.width = WIDTH(r->bar);
1426 rect.height = HEIGHT(r->bar);
1428 /* clear back buffer */
1429 gcv[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
1430 xcb_change_gc(conn, r->s->bar_gc, XCB_GC_FOREGROUND, gcv);
1431 xcb_poly_fill_rectangle(conn, r->bar->buffer, r->s->bar_gc, 1, &rect);
1433 /* draw back buffer */
1434 gcvd.graphics_exposures = 0;
1435 draw = XCreateGC(display, r->bar->buffer, GCGraphicsExposures, &gcvd);
1436 XSetForeground(display, draw, r->s->c[SWM_S_COLOR_BAR_FONT].pixel);
1437 DRAWSTRING(display, r->bar->buffer, bar_fs, draw,
1438 x, (bar_fs_extents->max_logical_extent.height - lbox.height) / 2 -
1440 XFreeGC(display, draw);
1443 xcb_copy_area(conn, r->bar->buffer, r->bar->id, r->s->bar_gc, 0, 0,
1444 0, 0, WIDTH(r->bar), HEIGHT(r->bar));
1448 bar_print(struct swm_region *r, const char *s)
1451 xcb_rectangle_t rect;
1459 XftTextExtentsUtf8(display, bar_font, (FcChar8 *)s, len, &info);
1461 switch (bar_justify) {
1462 case SWM_BAR_JUSTIFY_LEFT:
1465 case SWM_BAR_JUSTIFY_CENTER:
1466 x = (WIDTH(r) - info.width) / 2;
1468 case SWM_BAR_JUSTIFY_RIGHT:
1469 x = WIDTH(r) - info.width - SWM_BAR_OFFSET;
1473 if (x < SWM_BAR_OFFSET)
1478 rect.width = WIDTH(r->bar);
1479 rect.height = HEIGHT(r->bar);
1481 /* clear back buffer */
1482 gcv[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
1483 xcb_change_gc(conn, r->s->bar_gc, XCB_GC_FOREGROUND, gcv);
1484 xcb_poly_fill_rectangle(conn, r->bar->buffer, r->s->bar_gc, 1, &rect);
1486 /* draw back buffer */
1487 draw = XftDrawCreate(display, r->bar->buffer,
1488 DefaultVisual(display, r->s->idx),
1489 DefaultColormap(display, r->s->idx));
1491 XftDrawStringUtf8(draw, &bar_font_color, bar_font, x,
1492 (HEIGHT(r->bar) + bar_font->height) / 2 - bar_font->descent,
1495 XftDrawDestroy(draw);
1498 xcb_copy_area(conn, r->bar->buffer, r->bar->id, r->s->bar_gc, 0, 0,
1499 0, 0, WIDTH(r->bar), HEIGHT(r->bar));
1503 bar_extra_stop(void)
1507 bzero(bar_pipe, sizeof bar_pipe);
1510 kill(bar_pid, SIGTERM);
1513 strlcpy((char *)bar_ext, "", sizeof bar_ext);
1518 bar_class_name(char *s, size_t sz, struct swm_region *r)
1520 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1522 if (r->ws->focus->ch.class_name != NULL)
1523 strlcat(s, r->ws->focus->ch.class_name, sz);
1527 bar_title_name(char *s, size_t sz, struct swm_region *r)
1529 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1531 if (r->ws->focus->ch.instance_name != NULL)
1532 strlcat(s, r->ws->focus->ch.instance_name, sz);
1536 bar_class_title_name(char *s, size_t sz, struct swm_region *r)
1538 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1541 bar_class_name(s, sz, r);
1542 strlcat(s, ":", sz);
1543 bar_title_name(s, sz, r);
1547 bar_window_float(char *s, size_t sz, struct swm_region *r)
1549 if (r == NULL || r ->ws == NULL || r->ws->focus == NULL)
1551 if (r->ws->focus->floating)
1552 strlcat(s, "(f)", sz);
1556 bar_window_name(char *s, size_t sz, struct swm_region *r)
1560 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1562 if ((title = get_win_name(r->ws->focus->id)) == NULL)
1565 strlcat(s, title, sz);
1569 int urgent[SWM_WS_MAX];
1571 bar_urgent(char *s, size_t sz)
1574 int i, j, num_screens;
1576 xcb_get_property_cookie_t c;
1577 xcb_icccm_wm_hints_t hints;
1579 for (i = 0; i < workspace_limit; i++)
1582 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1583 for (i = 0; i < num_screens; i++)
1584 for (j = 0; j < workspace_limit; j++)
1585 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry) {
1586 c = xcb_icccm_get_wm_hints(conn, win->id);
1587 if (xcb_icccm_get_wm_hints_reply(conn, c,
1590 if (hints.flags & XCB_ICCCM_WM_HINT_X_URGENCY)
1594 for (i = 0; i < workspace_limit; i++) {
1596 snprintf(b, sizeof b, "%d ", i + 1);
1598 snprintf(b, sizeof b, "- ");
1604 bar_workspace_name(char *s, size_t sz, struct swm_region *r)
1606 if (r == NULL || r->ws == NULL)
1608 if (r->ws->name != NULL)
1609 strlcat(s, r->ws->name, sz);
1612 /* build the default bar format according to the defined enabled options */
1614 bar_fmt(const char *fmtexp, char *fmtnew, struct swm_region *r, size_t sz)
1616 /* if format provided, just copy the buffers */
1617 if (bar_format != NULL) {
1618 strlcpy(fmtnew, fmtexp, sz);
1622 /* reset the output buffer */
1625 strlcat(fmtnew, "+N:+I ", sz);
1627 strlcat(fmtnew, "+S", sz);
1628 strlcat(fmtnew, " ", sz);
1630 /* only show the workspace name if there's actually one */
1631 if (r != NULL && r->ws != NULL && r->ws->name != NULL)
1632 strlcat(fmtnew, "<+D>", sz);
1633 strlcat(fmtnew, "+3<", sz);
1635 if (clock_enabled) {
1636 strlcat(fmtnew, fmtexp, sz);
1637 strlcat(fmtnew, "+4<", sz);
1640 /* bar_urgent already adds the space before the last asterisk */
1642 strlcat(fmtnew, "* +U*+4<", sz);
1644 if (title_class_enabled) {
1645 strlcat(fmtnew, "+C", sz);
1646 if (title_name_enabled == 0)
1647 strlcat(fmtnew, "+4<", sz);
1650 /* checks needed by the colon and floating strlcat(3) calls below */
1651 if (r != NULL && r->ws != NULL && r->ws->focus != NULL) {
1652 if (title_name_enabled) {
1653 if (title_class_enabled)
1654 strlcat(fmtnew, ":", sz);
1655 strlcat(fmtnew, "+T+4<", sz);
1657 if (window_name_enabled) {
1658 if (r->ws->focus->floating)
1659 strlcat(fmtnew, "+F ", sz);
1660 strlcat(fmtnew, "+64W ", sz);
1664 /* finally add the action script output and the version */
1665 strlcat(fmtnew, "+4<+A+4<+V", sz);
1669 bar_replace_pad(char *tmp, int *limit, size_t sz)
1671 /* special case; no limit given, pad one space, instead */
1672 if (*limit == (int)sz - 1)
1674 snprintf(tmp, sz, "%*s", *limit, " ");
1677 /* replaces the bar format character sequences (like in tmux(1)) */
1679 bar_replace_seq(char *fmt, char *fmtrep, struct swm_region *r, size_t *offrep,
1683 char tmp[SWM_BAR_MAX];
1687 /* reset strlcat(3) buffer */
1690 /* get number, if any */
1693 if (sscanf(fmt, "%d%n", &limit, &size) != 1)
1694 limit = sizeof tmp - 1;
1695 if (limit <= 0 || limit >= (int)sizeof tmp)
1696 limit = sizeof tmp - 1;
1698 /* there is nothing to replace (ie EOL) */
1705 bar_replace_pad(tmp, &limit, sizeof tmp);
1708 snprintf(tmp, sizeof tmp, "%s", bar_ext);
1711 bar_class_name(tmp, sizeof tmp, r);
1714 bar_workspace_name(tmp, sizeof tmp, r);
1717 bar_window_float(tmp, sizeof tmp, r);
1720 snprintf(tmp, sizeof tmp, "%d", r->ws->idx + 1);
1723 snprintf(tmp, sizeof tmp, "%d", r->s->idx + 1);
1726 bar_class_title_name(tmp, sizeof tmp, r);
1729 snprintf(tmp, sizeof tmp, "%s", r->ws->stacker);
1732 bar_title_name(tmp, sizeof tmp, r);
1735 bar_urgent(tmp, sizeof tmp);
1738 snprintf(tmp, sizeof tmp, "%s", bar_vertext);
1741 bar_window_name(tmp, sizeof tmp, r);
1744 /* unknown character sequence; copy as-is */
1745 snprintf(tmp, sizeof tmp, "+%c", *fmt);
1751 if ((int)len < limit)
1753 while (limit-- > 0) {
1754 if (*offrep >= sz - 1)
1756 fmtrep[(*offrep)++] = *ptr++;
1764 bar_replace(char *fmt, char *fmtrep, struct swm_region *r, size_t sz)
1769 while (*fmt != '\0') {
1771 /* skip ordinary characters */
1774 fmtrep[off++] = *fmt++;
1778 /* character sequence found; replace it */
1779 fmt = bar_replace_seq(fmt, fmtrep, r, &off, sz);
1788 bar_fmt_expand(char *fmtexp, size_t sz)
1795 /* start by grabbing the current time and date */
1797 localtime_r(&tmt, &tm);
1799 /* figure out what to expand */
1800 if (bar_format != NULL)
1802 else if (bar_format == NULL && clock_enabled)
1804 /* if nothing to expand bail out */
1810 /* copy as-is, just in case the format shouldn't be expanded below */
1811 strlcpy(fmtexp, fmt, sz);
1812 /* finally pass the string through strftime(3) */
1813 #ifndef SWM_DENY_CLOCK_FORMAT
1814 if ((len = strftime(fmtexp, sz, fmt, &tm)) == 0)
1815 warnx("format too long");
1823 char fmtexp[SWM_BAR_MAX], fmtnew[SWM_BAR_MAX];
1824 char fmtrep[SWM_BAR_MAX];
1826 struct swm_region *r;
1828 /* expand the format by first passing it through strftime(3) */
1829 bar_fmt_expand(fmtexp, sizeof fmtexp);
1831 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1832 for (i = 0; i < num_screens; i++) {
1833 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1836 bar_fmt(fmtexp, fmtnew, r, sizeof fmtnew);
1837 bar_replace(fmtnew, fmtrep, r, sizeof fmtrep);
1838 if (bar_font_legacy)
1839 bar_print_legacy(r, fmtrep);
1841 bar_print(r, fmtrep);
1852 if (bar_enabled == 0)
1854 if (bar_extra && bar_extra_running) {
1855 /* ignore short reads; it'll correct itself */
1856 while ((b = fgetln(stdin, &len)) != NULL)
1857 if (b && b[len - 1] == '\n') {
1859 strlcpy((char *)bar_ext, b, sizeof bar_ext);
1861 if (b == NULL && errno != EAGAIN) {
1862 warn("bar_update: bar_extra failed");
1866 strlcpy((char *)bar_ext, "", sizeof bar_ext);
1875 /* suppress unused warning since var is needed */
1882 bar_toggle(struct swm_region *r, union arg *args)
1884 struct swm_region *tmpr;
1887 /* suppress unused warnings since vars are needed */
1891 DNPRINTF(SWM_D_BAR, "bar_toggle\n");
1893 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1895 for (i = 0; i < num_screens; i++)
1896 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
1898 xcb_unmap_window(conn, tmpr->bar->id);
1900 for (i = 0; i < num_screens; i++)
1901 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
1903 xcb_map_window(conn, tmpr->bar->id);
1906 bar_enabled = !bar_enabled;
1910 /* must be after stack */
1919 struct swm_region *r;
1923 /* do this here because the conf file is in memory */
1924 if (bar_extra && bar_extra_running == 0 && bar_argv[0]) {
1925 /* launch external status app */
1926 bar_extra_running = 1;
1927 if (pipe(bar_pipe) == -1)
1928 err(1, "pipe error");
1929 socket_setnonblock(bar_pipe[0]);
1930 socket_setnonblock(bar_pipe[1]); /* XXX hmmm, really? */
1931 if (dup2(bar_pipe[0], 0) == -1)
1933 if (dup2(bar_pipe[1], 1) == -1)
1935 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
1936 err(1, "could not disable SIGPIPE");
1937 switch (bar_pid = fork()) {
1939 err(1, "cannot fork");
1943 execvp(bar_argv[0], bar_argv);
1944 err(1, "%s external app failed", bar_argv[0]);
1946 default: /* parent */
1952 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1953 for (i = 0; i < num_screens; i++)
1954 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1957 wa[0] = screens[i].c[SWM_S_COLOR_BAR].pixel;
1958 wa[1] = screens[i].c[SWM_S_COLOR_BAR_BORDER].pixel;
1959 xcb_change_window_attributes(conn, r->bar->id,
1960 XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL, wa);
1970 while ((s = index(s, '-'))) {
1975 return (count == 14);
1981 char *default_string;
1982 char **missing_charsets;
1983 int num_missing_charsets = 0;
1987 XFreeFontSet(display, bar_fs);
1991 DNPRINTF(SWM_D_INIT, "fontset_init: loading bar_fonts: %s\n", bar_fonts);
1993 bar_fs = XCreateFontSet(display, bar_fonts, &missing_charsets,
1994 &num_missing_charsets, &default_string);
1996 if (num_missing_charsets > 0) {
1997 warnx("Unable to load charset(s):");
1999 for (i = 0; i < num_missing_charsets; ++i)
2000 warnx("%s", missing_charsets[i]);
2002 XFreeStringList(missing_charsets);
2004 if (strcmp(default_string, ""))
2005 warnx("Glyphs from those sets will be replaced "
2006 "by '%s'.", default_string);
2008 warnx("Glyphs from those sets won't be drawn.");
2012 errx(1, "Error creating font set structure.");
2014 bar_fs_extents = XExtentsOfFontSet(bar_fs);
2016 bar_height = bar_fs_extents->max_logical_extent.height +
2017 2 * bar_border_width;
2024 xft_init(struct swm_region *r)
2026 char *font, *d, *search;
2029 if (bar_font == NULL) {
2030 if ((d = strdup(bar_fonts)) == NULL)
2031 errx(1, "insufficient memory.");
2033 while ((font = strsep(&search, ",")) != NULL) {
2037 DNPRINTF(SWM_D_INIT, "xft_init: try font %s\n", font);
2040 bar_font = XftFontOpenXlfd(display, r->s->idx,
2043 bar_font = XftFontOpenName(display, r->s->idx,
2048 warnx("unable to load font %s", font);
2051 DNPRINTF(SWM_D_INIT, "successfully opened "
2059 if (bar_font == NULL)
2060 errx(1, "unable to open a font");
2062 PIXEL_TO_XRENDERCOLOR(r->s->c[SWM_S_COLOR_BAR_FONT].pixel, color);
2064 if (!XftColorAllocValue(display, DefaultVisual(display, r->s->idx),
2065 DefaultColormap(display, r->s->idx), &color, &bar_font_color))
2066 warn("unable to allocate Xft color");
2068 bar_height = bar_font->height + 2 * bar_border_width;
2075 bar_setup(struct swm_region *r)
2077 xcb_screen_t *screen;
2080 DNPRINTF(SWM_D_BAR, "bar_setup: screen %d.\n",
2083 if ((screen = get_screen(r->s->idx)) == NULL)
2084 errx(1, "ERROR: can't get screen %d.", r->s->idx);
2089 if ((r->bar = calloc(1, sizeof(struct swm_bar))) == NULL)
2090 err(1, "bar_setup: calloc: failed to allocate memory.");
2092 if (bar_font_legacy)
2098 Y(r->bar) = bar_at_bottom ? (Y(r) + HEIGHT(r) - bar_height) : Y(r);
2099 WIDTH(r->bar) = WIDTH(r) - 2 * bar_border_width;
2100 HEIGHT(r->bar) = bar_height - 2 * bar_border_width;
2102 r->bar->id = xcb_generate_id(conn);
2103 wa[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
2104 wa[1] = r->s->c[SWM_S_COLOR_BAR_BORDER].pixel;
2105 wa[2] = XCB_EVENT_MASK_EXPOSURE;
2107 xcb_create_window(conn, XCB_COPY_FROM_PARENT, r->bar->id, r->s->root,
2108 X(r->bar), Y(r->bar), WIDTH(r->bar), HEIGHT(r->bar),
2109 bar_border_width, XCB_WINDOW_CLASS_INPUT_OUTPUT,
2110 XCB_COPY_FROM_PARENT, XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL
2111 | XCB_CW_EVENT_MASK, wa);
2113 r->bar->buffer = xcb_generate_id(conn);
2114 xcb_create_pixmap(conn, screen->root_depth, r->bar->buffer, r->bar->id,
2115 WIDTH(r->bar), HEIGHT(r->bar));
2118 xcb_randr_select_input(conn, r->bar->id,
2119 XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE);
2122 xcb_map_window(conn, r->bar->id);
2124 DNPRINTF(SWM_D_BAR, "bar_setup: window: 0x%x, (x,y) w x h: (%d,%d) "
2125 "%d x %d\n", WINID(r->bar), X(r->bar), Y(r->bar), WIDTH(r->bar),
2128 if (signal(SIGALRM, bar_signal) == SIG_ERR)
2129 err(1, "could not install bar_signal");
2134 bar_cleanup(struct swm_region *r)
2138 xcb_destroy_window(conn, r->bar->id);
2139 xcb_free_pixmap(conn, r->bar->buffer);
2145 set_win_state(struct ws_win *win, uint16_t state)
2147 uint16_t data[2] = { state, XCB_ATOM_NONE };
2149 DNPRINTF(SWM_D_EVENT, "set_win_state: window: 0x%x\n", win->id);
2154 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id, a_state,
2155 a_state, 32, 2, data);
2159 getstate(xcb_window_t w)
2161 uint32_t result = 0;
2162 xcb_get_property_cookie_t c;
2163 xcb_get_property_reply_t *r;
2165 c = xcb_get_property(conn, 0, w, a_state, a_state, 0L, 2L);
2166 r = xcb_get_property_reply(conn, c, NULL);
2169 if (r->type == a_state && r->format == 32 && r->length == 2)
2170 result = *((uint32_t *)xcb_get_property_value(r));
2174 DNPRINTF(SWM_D_MISC, "getstate property: win 0x%x state %u\n", w,
2180 version(struct swm_region *r, union arg *args)
2182 /* suppress unused warnings since vars are needed */
2186 bar_version = !bar_version;
2188 snprintf(bar_vertext, sizeof bar_vertext,
2189 "Version: %s Build: %s", SPECTRWM_VERSION, buildstr);
2191 strlcpy(bar_vertext, "", sizeof bar_vertext);
2198 client_msg(struct ws_win *win, xcb_atom_t a, xcb_timestamp_t t)
2200 xcb_client_message_event_t ev;
2208 name = get_atom_name(a);
2209 DNPRINTF(SWM_D_EVENT, "client_msg: window: 0x%x, atom: %s(%u), "
2211 win->id, name, a, t);
2215 bzero(&ev, sizeof ev);
2216 ev.response_type = XCB_CLIENT_MESSAGE;
2217 ev.window = win->id;
2220 ev.data.data32[0] = a;
2221 ev.data.data32[1] = t;
2223 xcb_send_event(conn, 0, win->id,
2224 XCB_EVENT_MASK_NO_EVENT, (const char *)&ev);
2227 /* synthetic response to a ConfigureRequest when not making a change */
2229 config_win(struct ws_win *win, xcb_configure_request_event_t *ev)
2231 xcb_configure_notify_event_t ce;
2236 /* send notification of unchanged state. */
2237 bzero(&ce, sizeof(ce));
2238 ce.response_type = XCB_CONFIGURE_NOTIFY;
2241 ce.width = WIDTH(win);
2242 ce.height = HEIGHT(win);
2243 ce.override_redirect = 0;
2248 ce.window = win->id;
2249 ce.border_width = BORDER(win);
2250 ce.above_sibling = XCB_WINDOW_NONE;
2253 ce.event = ev->window;
2254 ce.window = ev->window;
2256 /* make response appear more WM_SIZE_HINTS-compliant */
2257 if (win->sh.flags) {
2258 DNPRINTF(SWM_D_MISC, "config_win: hints: window: 0x%x,"
2259 " sh.flags: %u, min: %d x %d, max: %d x %d, inc: "
2260 "%d x %d\n", win->id, win->sh.flags, SH_MIN_W(win),
2261 SH_MIN_H(win), SH_MAX_W(win), SH_MAX_H(win),
2262 SH_INC_W(win), SH_INC_H(win));
2267 /* the hint may be set... to 0! */
2268 if (SH_MIN_W(win) > 0 && ce.width < SH_MIN_W(win))
2269 ce.width = SH_MIN_W(win);
2270 if (SH_MIN_H(win) > 0 && ce.height < SH_MIN_H(win))
2271 ce.height = SH_MIN_H(win);
2276 /* may also be advertized as 0 */
2277 if (SH_MAX_W(win) > 0 && ce.width > SH_MAX_W(win))
2278 ce.width = SH_MAX_W(win);
2279 if (SH_MAX_H(win) > 0 && ce.height > SH_MAX_H(win))
2280 ce.height = SH_MAX_H(win);
2283 /* resize increment. */
2285 if (SH_INC_W(win) > 1 && ce.width > SH_INC_W(win))
2286 ce.width -= (ce.width - SH_MIN_W(win)) %
2288 if (SH_INC_H(win) > 1 && ce.height > SH_INC_H(win))
2289 ce.height -= (ce.height - SH_MIN_H(win)) %
2293 /* adjust x and y for requested border_width. */
2294 ce.x += BORDER(win) - ev->border_width;
2295 ce.y += BORDER(win) - ev->border_width;
2296 ce.border_width = ev->border_width;
2297 ce.above_sibling = ev->sibling;
2300 DNPRINTF(SWM_D_MISC, "config_win: ewmh: %s, window: 0x%x, (x,y) w x h: "
2301 "(%d,%d) %d x %d, border: %d\n", YESNO(ev == NULL), win->id, ce.x,
2302 ce.y, ce.width, ce.height, ce.border_width);
2304 xcb_send_event(conn, 0, win->id, XCB_EVENT_MASK_STRUCTURE_NOTIFY,
2309 count_win(struct workspace *ws, int count_transient)
2314 TAILQ_FOREACH(win, &ws->winlist, entry) {
2315 if (count_transient == 0 && win->floating)
2317 if (count_transient == 0 && win->transient)
2323 DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
2329 quit(struct swm_region *r, union arg *args)
2331 /* suppress unused warnings since vars are needed */
2335 DNPRINTF(SWM_D_MISC, "quit\n");
2340 map_window(struct ws_win *win)
2342 uint32_t val = XCB_STACK_MODE_ABOVE;
2347 DNPRINTF(SWM_D_EVENT, "map_window: win 0x%x, mapped: %s\n", win->id,
2348 YESNO(win->mapped));
2350 xcb_configure_window(conn, win->id,
2351 XCB_CONFIG_WINDOW_STACK_MODE, &val);
2356 xcb_map_window(conn, win->id);
2357 set_win_state(win, XCB_ICCCM_WM_STATE_NORMAL);
2362 unmap_window(struct ws_win *win)
2367 DNPRINTF(SWM_D_EVENT, "unmap_window: win 0x%x, mapped: %s\n", win->id,
2368 YESNO(win->mapped));
2373 xcb_unmap_window(conn, win->id);
2374 set_win_state(win, XCB_ICCCM_WM_STATE_ICONIC);
2382 int i, j, num_screens;
2384 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2385 for (i = 0; i < num_screens; i++)
2386 for (j = 0; j < workspace_limit; j++)
2387 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2392 fake_keypress(struct ws_win *win, xcb_keysym_t keysym, uint16_t modifiers)
2394 xcb_key_press_event_t event;
2395 xcb_keycode_t *keycode;
2400 keycode = xcb_key_symbols_get_keycode(syms, keysym);
2402 DNPRINTF(SWM_D_MISC, "fake_keypress: win 0x%x keycode %u\n",
2405 bzero(&event, sizeof(event));
2406 event.event = win->id;
2407 event.root = win->s->root;
2408 event.child = XCB_WINDOW_NONE;
2409 event.time = XCB_CURRENT_TIME;
2410 event.event_x = X(win);
2411 event.event_y = Y(win);
2414 event.same_screen = 1;
2415 event.detail = *keycode;
2416 event.state = modifiers;
2418 event.response_type = XCB_KEY_PRESS;
2419 xcb_send_event(conn, 1, win->id,
2420 XCB_EVENT_MASK_KEY_PRESS, (const char *)&event);
2422 event.response_type = XCB_KEY_RELEASE;
2423 xcb_send_event(conn, 1, win->id,
2424 XCB_EVENT_MASK_KEY_RELEASE, (const char *)&event);
2430 restart(struct swm_region *r, union arg *args)
2432 /* suppress unused warning since var is needed */
2436 DNPRINTF(SWM_D_MISC, "restart: %s\n", start_argv[0]);
2440 execvp(start_argv[0], start_argv);
2441 warn("execvp failed");
2446 root_to_region(xcb_window_t root)
2448 struct swm_region *r = NULL;
2450 xcb_query_pointer_reply_t *qpr;
2452 DNPRINTF(SWM_D_MISC, "root_to_region: window: 0x%x\n", root);
2454 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2455 for (i = 0; i < num_screens; i++)
2456 if (screens[i].root == root)
2459 qpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn,
2460 screens[i].root), NULL);
2463 DNPRINTF(SWM_D_MISC, "root_to_region: pointer: (%d,%d)\n",
2464 qpr->root_x, qpr->root_y);
2465 /* choose a region based on pointer location */
2466 TAILQ_FOREACH(r, &screens[i].rl, entry)
2467 if (X(r) <= qpr->root_x && qpr->root_x < MAX_X(r) &&
2468 Y(r) <= qpr->root_y && qpr->root_y < MAX_Y(r))
2474 r = TAILQ_FIRST(&screens[i].rl);
2480 find_unmanaged_window(xcb_window_t id)
2483 int i, j, num_screens;
2485 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2486 for (i = 0; i < num_screens; i++)
2487 for (j = 0; j < workspace_limit; j++)
2488 TAILQ_FOREACH(win, &screens[i].ws[j].unmanagedlist,
2496 find_window(xcb_window_t id)
2499 int i, j, num_screens;
2500 xcb_query_tree_reply_t *r;
2502 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2503 for (i = 0; i < num_screens; i++)
2504 for (j = 0; j < workspace_limit; j++)
2505 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2509 r = xcb_query_tree_reply(conn, xcb_query_tree(conn, id), NULL);
2513 /* if we were looking for the parent return that window instead */
2514 if (r->parent == 0 || r->root == r->parent) {
2519 /* look for parent */
2520 for (i = 0; i < num_screens; i++)
2521 for (j = 0; j < workspace_limit; j++)
2522 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2523 if (r->parent == win->id) {
2533 spawn(int ws_idx, union arg *args, int close_fd)
2538 DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
2540 close(xcb_get_file_descriptor(conn));
2542 setenv("LD_PRELOAD", SWM_LIB, 1);
2544 if (asprintf(&ret, "%d", ws_idx) == -1) {
2545 warn("spawn: asprintf SWM_WS");
2548 setenv("_SWM_WS", ret, 1);
2552 if (asprintf(&ret, "%d", getpid()) == -1) {
2553 warn("spawn: asprintf _SWM_PID");
2556 setenv("_SWM_PID", ret, 1);
2560 if (setsid() == -1) {
2561 warn("spawn: setsid");
2567 * close stdin and stdout to prevent interaction between apps
2568 * and the baraction script
2569 * leave stderr open to record errors
2571 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) == -1) {
2572 warn("spawn: open");
2575 dup2(fd, STDIN_FILENO);
2576 dup2(fd, STDOUT_FILENO);
2581 execvp(args->argv[0], args->argv);
2583 warn("spawn: execvp");
2588 kill_refs(struct ws_win *win)
2590 int i, x, num_screens;
2591 struct swm_region *r;
2592 struct workspace *ws;
2597 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2598 for (i = 0; i < num_screens; i++)
2599 TAILQ_FOREACH(r, &screens[i].rl, entry)
2600 for (x = 0; x < workspace_limit; x++) {
2602 if (win == ws->focus)
2604 if (win == ws->focus_prev)
2605 ws->focus_prev = NULL;
2610 validate_win(struct ws_win *testwin)
2613 struct workspace *ws;
2614 struct swm_region *r;
2615 int i, x, num_screens;
2617 if (testwin == NULL)
2620 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2621 for (i = 0; i < num_screens; i++)
2622 TAILQ_FOREACH(r, &screens[i].rl, entry)
2623 for (x = 0; x < workspace_limit; x++) {
2625 TAILQ_FOREACH(win, &ws->winlist, entry)
2633 validate_ws(struct workspace *testws)
2635 struct swm_region *r;
2636 struct workspace *ws;
2637 int i, x, num_screens;
2639 /* validate all ws */
2640 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2641 for (i = 0; i < num_screens; i++)
2642 TAILQ_FOREACH(r, &screens[i].rl, entry)
2643 for (x = 0; x < workspace_limit; x++) {
2652 unfocus_win(struct ws_win *win)
2654 xcb_window_t none = XCB_WINDOW_NONE;
2656 DNPRINTF(SWM_D_FOCUS, "unfocus_win: window: 0x%x\n", WINID(win));
2660 if (win->ws == NULL) {
2661 DNPRINTF(SWM_D_FOCUS, "unfocus_win: NULL ws.\n");
2665 if (validate_ws(win->ws)) {
2666 DNPRINTF(SWM_D_FOCUS, "unfocus_win: invalid ws.\n");
2670 if (win->ws->r == NULL) {
2671 DNPRINTF(SWM_D_FOCUS, "unfocus_win: NULL region.\n");
2675 if (validate_win(win)) {
2676 DNPRINTF(SWM_D_FOCUS, "unfocus_win: invalid win.\n");
2681 if (win->ws->focus == win) {
2682 win->ws->focus = NULL;
2683 win->ws->focus_prev = win;
2686 if (validate_win(win->ws->focus)) {
2687 kill_refs(win->ws->focus);
2688 win->ws->focus = NULL;
2690 if (validate_win(win->ws->focus_prev)) {
2691 kill_refs(win->ws->focus_prev);
2692 win->ws->focus_prev = NULL;
2695 xcb_change_window_attributes(conn, win->id, XCB_CW_BORDER_PIXEL,
2696 &win->ws->r->s->c[SWM_S_COLOR_UNFOCUS].pixel);
2698 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->s->root,
2699 ewmh[_NET_ACTIVE_WINDOW].atom, XCB_ATOM_WINDOW, 32, 1, &none);
2701 DNPRINTF(SWM_D_FOCUS, "unfocus_win: done.\n");
2705 focus_win(struct ws_win *win)
2707 struct ws_win *cfw = NULL;
2708 xcb_get_input_focus_reply_t *r;
2710 DNPRINTF(SWM_D_FOCUS, "focus_win: window: 0x%x\n", WINID(win));
2715 if (win->ws == NULL)
2718 if (validate_ws(win->ws))
2721 if (validate_win(win)) {
2726 r = xcb_get_input_focus_reply(conn, xcb_get_input_focus(conn), NULL);
2728 cfw = find_window(r->focus);
2734 if (win->ws->focus != win) {
2735 if (win->ws->focus && win->ws->focus != cfw)
2736 unfocus_win(win->ws->focus);
2737 win->ws->focus = win;
2740 if (cfw != win && win->ws->r != NULL) {
2741 /* Set input focus if no input hint, or indicated by hint. */
2742 if (!(win->hints.flags & XCB_ICCCM_WM_HINT_INPUT) ||
2743 (win->hints.flags & XCB_ICCCM_WM_HINT_INPUT &&
2745 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT,
2746 win->id, last_event_time);
2748 /* Tell app it can adjust focus to a specific window. */
2749 if (win->take_focus) {
2750 /* java is special; always tell parent */
2751 if (win->transient && win->java)
2752 client_msg(find_window(win->transient),
2753 a_takefocus, last_event_time);
2755 client_msg(win, a_takefocus, last_event_time);
2758 xcb_change_window_attributes(conn, win->id, XCB_CW_BORDER_PIXEL,
2759 &win->ws->r->s->c[SWM_S_COLOR_FOCUS].pixel);
2761 if (win->ws->cur_layout->flags & SWM_L_MAPONFOCUS ||
2762 win->ws->always_raise)
2765 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->s->root,
2766 ewmh[_NET_ACTIVE_WINDOW].atom, XCB_ATOM_WINDOW, 32, 1,
2773 DNPRINTF(SWM_D_FOCUS, "focus_win: done.\n");
2776 /* If a child window should have focus instead, return it. */
2778 get_focus_magic(struct ws_win *win)
2780 struct ws_win *parent = NULL;
2782 DNPRINTF(SWM_D_FOCUS, "get_focus_magic: window: 0x%x\n", WINID(win));
2786 if (win->transient) {
2787 parent = find_window(win->transient);
2789 /* If parent prefers focus elsewhere, then do so. */
2790 if (parent && parent->focus_child) {
2791 if (validate_win(parent->focus_child) == 0)
2792 win = parent->focus_child;
2794 parent->focus_child = NULL;
2798 /* If this window prefers focus elsewhere, then do so. */
2799 if (win->focus_child) {
2800 if (validate_win(win->focus_child) == 0)
2801 win = win->focus_child;
2803 win->focus_child = NULL;
2810 event_drain(uint8_t rt)
2812 xcb_generic_event_t *evt;
2814 /* ensure all pending requests have been processed before filtering. */
2816 while ((evt = xcb_poll_for_event(conn))) {
2817 if (XCB_EVENT_RESPONSE_TYPE(evt) != rt)
2825 switchws(struct swm_region *r, union arg *args)
2827 int wsid = args->id, unmap_old = 0;
2828 struct swm_region *this_r, *other_r;
2830 struct workspace *new_ws, *old_ws;
2835 if (wsid >= workspace_limit)
2839 old_ws = this_r->ws;
2840 new_ws = &this_r->s->ws[wsid];
2842 DNPRINTF(SWM_D_WS, "switchws: screen[%d]:%dx%d+%d+%d: %d -> %d\n",
2843 r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), old_ws->idx, wsid);
2845 if (new_ws == NULL || old_ws == NULL)
2847 if (new_ws == old_ws)
2850 other_r = new_ws->r;
2851 if (other_r == NULL) {
2852 /* the other workspace is hidden, hide this one */
2856 /* the other ws is visible in another region, exchange them */
2857 other_r->ws_prior = new_ws;
2858 other_r->ws = old_ws;
2859 old_ws->r = other_r;
2861 this_r->ws_prior = old_ws;
2862 this_r->ws = new_ws;
2865 unmap_window(old_ws->focus);
2869 /* unmap old windows */
2871 TAILQ_FOREACH(win, &old_ws->winlist, entry)
2874 new_ws->focus = get_region_focus(new_ws->r);
2876 /* unmap old windows */
2878 TAILQ_FOREACH(win, &old_ws->winlist, entry)
2881 /* make sure bar gets updated if ws is empty */
2885 /* make sure bar gets updated if ws is empty */
2891 DNPRINTF(SWM_D_WS, "switchws: done.\n");
2895 cyclews(struct swm_region *r, union arg *args)
2898 struct swm_screen *s = r->s;
2901 DNPRINTF(SWM_D_WS, "cyclews: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2902 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2907 case SWM_ARG_ID_CYCLEWS_UP_ALL:
2910 case SWM_ARG_ID_CYCLEWS_UP:
2911 if (a.id < workspace_limit - 1)
2916 case SWM_ARG_ID_CYCLEWS_DOWN_ALL:
2919 case SWM_ARG_ID_CYCLEWS_DOWN:
2923 a.id = workspace_limit - 1;
2930 (cycle_empty == 0 && TAILQ_EMPTY(&s->ws[a.id].winlist)))
2932 if (cycle_visible == 0 && s->ws[a.id].r != NULL)
2936 } while (a.id != r->ws->idx);
2940 priorws(struct swm_region *r, union arg *args)
2946 DNPRINTF(SWM_D_WS, "priorws: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2947 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2949 if (r->ws_prior == NULL)
2952 a.id = r->ws_prior->idx;
2957 cyclescr(struct swm_region *r, union arg *args)
2959 struct swm_region *rr = NULL;
2960 int i, x, y, num_screens;
2962 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2963 /* do nothing if we don't have more than one screen */
2964 if (!(num_screens > 1 || outputs > 1))
2969 case SWM_ARG_ID_CYCLESC_UP:
2970 rr = TAILQ_NEXT(r, entry);
2972 rr = TAILQ_FIRST(&screens[i].rl);
2974 case SWM_ARG_ID_CYCLESC_DOWN:
2975 rr = TAILQ_PREV(r, swm_region_list, entry);
2977 rr = TAILQ_LAST(&screens[i].rl, swm_region_list);
2985 /* move mouse to region */
2987 y = Y(rr) + 1 + (bar_enabled ? bar_height : 0);
2988 xcb_warp_pointer(conn, XCB_WINDOW_NONE, rr->s[i].root, 0, 0, 0, 0,
2991 rr->ws->focus = get_region_focus(rr);
2993 if (rr->ws->focus) {
2994 /* move to focus window */
2995 x = X(rr->ws->focus) + 1;
2996 y = Y(rr->ws->focus) + 1;
2997 xcb_warp_pointer(conn, XCB_WINDOW_NONE, rr->s[i].root, 0, 0, 0,
3005 sort_windows(struct ws_win_list *wl)
3007 struct ws_win *win, *parent, *nxt;
3012 for (win = TAILQ_FIRST(wl); win != TAILQ_END(wl); win = nxt) {
3013 nxt = TAILQ_NEXT(win, entry);
3014 if (win->transient) {
3015 parent = find_window(win->transient);
3016 if (parent == NULL) {
3017 warnx("not possible bug");
3020 TAILQ_REMOVE(wl, win, entry);
3021 TAILQ_INSERT_AFTER(wl, parent, win, entry);
3028 swapwin(struct swm_region *r, union arg *args)
3030 struct ws_win *target, *source;
3031 struct ws_win *cur_focus;
3032 struct ws_win_list *wl;
3035 DNPRINTF(SWM_D_WS, "swapwin: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
3036 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
3038 cur_focus = r->ws->focus;
3039 if (cur_focus == NULL)
3043 wl = &source->ws->winlist;
3046 case SWM_ARG_ID_SWAPPREV:
3047 if (source->transient)
3048 source = find_window(source->transient);
3049 target = TAILQ_PREV(source, ws_win_list, entry);
3050 if (target && target->transient)
3051 target = find_window(target->transient);
3052 TAILQ_REMOVE(wl, source, entry);
3054 TAILQ_INSERT_TAIL(wl, source, entry);
3056 TAILQ_INSERT_BEFORE(target, source, entry);
3058 case SWM_ARG_ID_SWAPNEXT:
3059 target = TAILQ_NEXT(source, entry);
3060 /* move the parent and let the sort handle the move */
3061 if (source->transient)
3062 source = find_window(source->transient);
3063 TAILQ_REMOVE(wl, source, entry);
3065 TAILQ_INSERT_HEAD(wl, source, entry);
3067 TAILQ_INSERT_AFTER(wl, target, source, entry);
3069 case SWM_ARG_ID_SWAPMAIN:
3070 target = TAILQ_FIRST(wl);
3071 if (target == source) {
3072 if (source->ws->focus_prev != NULL &&
3073 source->ws->focus_prev != target)
3074 source = source->ws->focus_prev;
3078 if (target == NULL || source == NULL)
3080 source->ws->focus_prev = target;
3081 TAILQ_REMOVE(wl, target, entry);
3082 TAILQ_INSERT_BEFORE(source, target, entry);
3083 TAILQ_REMOVE(wl, source, entry);
3084 TAILQ_INSERT_HEAD(wl, source, entry);
3086 case SWM_ARG_ID_MOVELAST:
3087 TAILQ_REMOVE(wl, source, entry);
3088 TAILQ_INSERT_TAIL(wl, source, entry);
3091 DNPRINTF(SWM_D_MOVE, "swapwin: invalid id: %d\n", args->id);
3103 get_focus_prev(struct ws_win *win)
3105 struct ws_win *winfocus = NULL;
3106 struct ws_win *cur_focus = NULL;
3107 struct ws_win_list *wl = NULL;
3108 struct workspace *ws = NULL;
3110 if (!(win && win->ws))
3115 cur_focus = ws->focus;
3117 DNPRINTF(SWM_D_FOCUS, "get_focus_prev: window: 0x%x, cur_focus: 0x%x\n",
3118 WINID(win), WINID(cur_focus));
3120 /* pickle, just focus on whatever */
3121 if (cur_focus == NULL) {
3122 /* use prev_focus if valid */
3123 if (ws->focus_prev && ws->focus_prev != cur_focus &&
3124 find_window(WINID(ws->focus_prev)))
3125 winfocus = ws->focus_prev;
3129 /* if transient focus on parent */
3130 if (cur_focus->transient) {
3131 winfocus = find_window(cur_focus->transient);
3135 /* if in max_stack try harder */
3136 if ((win->quirks & SWM_Q_FOCUSPREV) ||
3137 (ws->cur_layout->flags & SWM_L_FOCUSPREV)) {
3138 if (cur_focus != ws->focus_prev)
3139 winfocus = ws->focus_prev;
3141 winfocus = TAILQ_PREV(win, ws_win_list, entry);
3146 DNPRINTF(SWM_D_FOCUS, "get_focus_prev: focus_close: %d\n", focus_close);
3148 if (winfocus == NULL || winfocus == win) {
3149 switch (focus_close) {
3150 case SWM_STACK_BOTTOM:
3151 winfocus = TAILQ_FIRST(wl);
3154 winfocus = TAILQ_LAST(wl, ws_win_list);
3156 case SWM_STACK_ABOVE:
3157 if ((winfocus = TAILQ_NEXT(cur_focus, entry)) == NULL) {
3158 if (focus_close_wrap)
3159 winfocus = TAILQ_FIRST(wl);
3161 winfocus = TAILQ_PREV(cur_focus,
3162 ws_win_list, entry);
3165 case SWM_STACK_BELOW:
3166 if ((winfocus = TAILQ_PREV(cur_focus, ws_win_list,
3168 if (focus_close_wrap)
3169 winfocus = TAILQ_LAST(wl, ws_win_list);
3171 winfocus = TAILQ_NEXT(cur_focus, entry);
3177 if (winfocus == NULL) {
3178 if (focus_default == SWM_STACK_TOP)
3179 winfocus = TAILQ_LAST(wl, ws_win_list);
3181 winfocus = TAILQ_FIRST(wl);
3186 return get_focus_magic(winfocus);
3190 get_region_focus(struct swm_region *r)
3192 struct ws_win *winfocus = NULL;
3197 if (r->ws->focus && !r->ws->focus->iconic)
3198 winfocus = r->ws->focus;
3199 else if (r->ws->focus_prev && !r->ws->focus_prev->iconic)
3200 winfocus = r->ws->focus_prev;
3202 TAILQ_FOREACH(winfocus, &r->ws->winlist, entry)
3203 if (!winfocus->iconic)
3206 return get_focus_magic(winfocus);
3210 focus(struct swm_region *r, union arg *args)
3212 struct ws_win *head, *cur_focus = NULL, *winfocus = NULL;
3213 struct ws_win_list *wl = NULL;
3214 struct workspace *ws = NULL;
3220 DNPRINTF(SWM_D_FOCUS, "focus: id: %d\n", args->id);
3222 if ((cur_focus = r->ws->focus) == NULL)
3226 if (TAILQ_EMPTY(wl))
3228 /* make sure there is at least one uniconified window */
3230 TAILQ_FOREACH(winfocus, wl, entry)
3231 if (winfocus->iconic == 0) {
3239 case SWM_ARG_ID_FOCUSPREV:
3240 head = TAILQ_PREV(cur_focus, ws_win_list, entry);
3242 head = TAILQ_LAST(wl, ws_win_list);
3244 if (WINID(winfocus) == cur_focus->transient) {
3245 head = TAILQ_PREV(winfocus, ws_win_list, entry);
3247 head = TAILQ_LAST(wl, ws_win_list);
3252 if (winfocus && winfocus->iconic) {
3253 while (winfocus != cur_focus) {
3254 if (winfocus == NULL)
3255 winfocus = TAILQ_LAST(wl, ws_win_list);
3256 if (winfocus->iconic == 0)
3258 winfocus = TAILQ_PREV(winfocus, ws_win_list,
3264 case SWM_ARG_ID_FOCUSNEXT:
3265 head = TAILQ_NEXT(cur_focus, entry);
3267 head = TAILQ_FIRST(wl);
3271 if (winfocus && winfocus->iconic) {
3272 while (winfocus != cur_focus) {
3273 if (winfocus == NULL)
3274 winfocus = TAILQ_FIRST(wl);
3275 if (winfocus->iconic == 0)
3277 winfocus = TAILQ_NEXT(winfocus, entry);
3282 case SWM_ARG_ID_FOCUSMAIN:
3283 winfocus = TAILQ_FIRST(wl);
3284 if (winfocus == cur_focus)
3285 winfocus = cur_focus->ws->focus_prev;
3292 focus_win(get_focus_magic(winfocus));
3298 cycle_layout(struct swm_region *r, union arg *args)
3300 struct workspace *ws = r->ws;
3302 /* suppress unused warning since var is needed */
3305 DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", ws->idx);
3308 if (ws->cur_layout->l_stack == NULL)
3309 ws->cur_layout = &layouts[0];
3314 focus_win(get_region_focus(r));
3320 stack_config(struct swm_region *r, union arg *args)
3322 struct workspace *ws = r->ws;
3324 DNPRINTF(SWM_D_STACK, "stack_config: id: %d workspace: %d\n",
3327 if (ws->cur_layout->l_config != NULL)
3328 ws->cur_layout->l_config(ws, args->id);
3330 if (args->id != SWM_ARG_ID_STACKINIT)
3339 struct swm_geometry g;
3340 struct swm_region *r;
3346 DNPRINTF(SWM_D_STACK, "stack: begin\n");
3348 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3349 for (i = 0; i < num_screens; i++) {
3353 TAILQ_FOREACH(r, &screens[i].rl, entry) {
3354 DNPRINTF(SWM_D_STACK, "stack: workspace: %d "
3355 "(screen: %d, region: %d)\n", r->ws->idx, i, j++);
3357 /* start with screen geometry, adjust for bar */
3359 g.w -= 2 * border_width;
3360 g.h -= 2 * border_width;
3366 r->ws->cur_layout->l_stack(r->ws, &g);
3367 r->ws->cur_layout->l_string(r->ws);
3368 /* save r so we can track region changes */
3375 DNPRINTF(SWM_D_STACK, "stack: end\n");
3379 store_float_geom(struct ws_win *win, struct swm_region *r)
3381 if (win == NULL || r == NULL)
3384 /* retain window geom and region geom */
3385 win->g_float = win->g;
3386 win->g_float.x -= X(r);
3387 win->g_float.y -= Y(r);
3388 win->g_floatvalid = 1;
3389 DNPRINTF(SWM_D_MISC, "store_float_geom: window: 0x%x, g: (%d,%d)"
3390 " %d x %d, g_float: (%d,%d) %d x %d\n", win->id, X(win), Y(win),
3391 WIDTH(win), HEIGHT(win), win->g_float.x, win->g_float.y,
3392 win->g_float.w, win->g_float.h);
3396 load_float_geom(struct ws_win *win, struct swm_region *r)
3398 if (win == NULL || r == NULL)
3401 if (win->g_floatvalid) {
3402 win->g = win->g_float;
3405 DNPRINTF(SWM_D_MISC, "load_float_geom: window: 0x%x, g: (%d,%d)"
3406 "%d x %d\n", win->id, X(win), Y(win), WIDTH(win),
3409 DNPRINTF(SWM_D_MISC, "load_float_geom: window: 0x%x, g_float "
3410 "is not set.\n", win->id);
3415 stack_floater(struct ws_win *win, struct swm_region *r)
3420 DNPRINTF(SWM_D_MISC, "stack_floater: window: 0x%x\n", win->id);
3423 * to allow windows to change their size (e.g. mplayer fs) only retrieve
3424 * geom on ws switches or return from max mode
3426 if (win->floatmaxed || (r != r->ws->old_r &&
3427 !(win->ewmh_flags & EWMH_F_FULLSCREEN))) {
3428 /* update geometry for the new region */
3429 load_float_geom(win, r);
3432 win->floatmaxed = 0;
3435 * if set to fullscreen mode, configure window to maximum size.
3437 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
3438 if (!win->g_floatvalid)
3439 store_float_geom(win, win->ws->r);
3445 * remove border on fullscreen floater when in fullscreen mode or when
3446 * the quirk is present.
3448 if ((win->ewmh_flags & EWMH_F_FULLSCREEN) ||
3449 ((win->quirks & SWM_Q_FULLSCREEN) &&
3450 (WIDTH(win) >= WIDTH(r)) && (HEIGHT(win) >= HEIGHT(r)))) {
3451 if (win->bordered) {
3453 X(win) += border_width;
3454 Y(win) += border_width;
3456 } else if (!win->bordered) {
3458 X(win) -= border_width;
3459 Y(win) -= border_width;
3462 if (win->transient && (win->quirks & SWM_Q_TRANSSZ)) {
3463 WIDTH(win) = (double)WIDTH(r) * dialog_ratio;
3464 HEIGHT(win) = (double)HEIGHT(r) * dialog_ratio;
3467 if (!win->manual && !(win->ewmh_flags & EWMH_F_FULLSCREEN) &&
3468 !(win->quirks & SWM_Q_ANYWHERE)) {
3470 * floaters and transients are auto-centred unless moved,
3471 * resized or ANYWHERE quirk is set.
3473 X(win) = X(r) + (WIDTH(r) - WIDTH(win)) / 2 - BORDER(win);
3474 Y(win) = Y(r) + (HEIGHT(r) - HEIGHT(win)) / 2 - BORDER(win);
3476 store_float_geom(win, r);
3479 /* keep window within region bounds */
3480 constrain_window(win, r, 0);
3486 * Send keystrokes to terminal to decrease/increase the font size as the
3487 * window size changes.
3490 adjust_font(struct ws_win *win)
3492 if (!(win->quirks & SWM_Q_XTERM_FONTADJ) ||
3493 win->floating || win->transient)
3496 if (win->sh.width_inc && win->last_inc != win->sh.width_inc &&
3497 WIDTH(win) / win->sh.width_inc < term_width &&
3498 win->font_steps < SWM_MAX_FONT_STEPS) {
3499 win->font_size_boundary[win->font_steps] =
3500 (win->sh.width_inc * term_width) + win->sh.base_width;
3503 win->last_inc = win->sh.width_inc;
3504 fake_keypress(win, XK_KP_Subtract, XCB_MOD_MASK_SHIFT);
3505 } else if (win->font_steps && win->last_inc != win->sh.width_inc &&
3506 WIDTH(win) > win->font_size_boundary[win->font_steps - 1]) {
3509 win->last_inc = win->sh.width_inc;
3510 fake_keypress(win, XK_KP_Add, XCB_MOD_MASK_SHIFT);
3514 #define SWAPXY(g) do { \
3516 tmp = (g)->y; (g)->y = (g)->x; (g)->x = tmp; \
3517 tmp = (g)->h; (g)->h = (g)->w; (g)->w = tmp; \
3520 stack_master(struct workspace *ws, struct swm_geometry *g, int rot, int flip)
3522 struct swm_geometry win_g, r_g = *g;
3523 struct ws_win *win, *fs_win = NULL;
3524 int i, j, s, stacks;
3525 int w_inc = 1, h_inc, w_base = 1, h_base;
3526 int hrh, extra = 0, h_slice, last_h = 0;
3527 int split, colno, winno, mwin, msize, mscale;
3528 int remain, missing, v_slice, reconfigure;
3531 DNPRINTF(SWM_D_STACK, "stack_master: workspace: %d, rot: %s, "
3532 "flip: %s\n", ws->idx, YESNO(rot), YESNO(flip));
3534 winno = count_win(ws, 0);
3535 if (winno == 0 && count_win(ws, 1) == 0)
3538 TAILQ_FOREACH(win, &ws->winlist, entry)
3539 if (win->transient == 0 && win->floating == 0
3540 && win->iconic == 0)
3547 w_inc = win->sh.width_inc;
3548 w_base = win->sh.base_width;
3549 mwin = ws->l_state.horizontal_mwin;
3550 mscale = ws->l_state.horizontal_msize;
3551 stacks = ws->l_state.horizontal_stacks;
3554 w_inc = win->sh.height_inc;
3555 w_base = win->sh.base_height;
3556 mwin = ws->l_state.vertical_mwin;
3557 mscale = ws->l_state.vertical_msize;
3558 stacks = ws->l_state.vertical_stacks;
3562 if (stacks > winno - mwin)
3563 stacks = winno - mwin;
3567 h_slice = r_g.h / SWM_H_SLICE;
3568 if (mwin && winno > mwin) {
3569 v_slice = r_g.w / SWM_V_SLICE;
3573 win_g.w = v_slice * mscale;
3575 if (w_inc > 1 && w_inc < v_slice) {
3576 /* adjust for window's requested size increment */
3577 remain = (win_g.w - w_base) % w_inc;
3583 win_g.x += r_g.w - msize;
3586 colno = split = winno / stacks;
3587 win_g.w = ((r_g.w - (stacks * 2 * border_width) +
3588 2 * border_width) / stacks);
3590 hrh = r_g.h / colno;
3591 extra = r_g.h - (colno * hrh);
3592 win_g.h = hrh - 2 * border_width;
3594 /* stack all the tiled windows */
3595 i = j = 0, s = stacks;
3596 TAILQ_FOREACH(win, &ws->winlist, entry) {
3597 if (win->transient != 0 || win->floating != 0)
3599 if (win->iconic != 0)
3602 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
3607 if (split && i == split) {
3608 colno = (winno - mwin) / stacks;
3609 if (s <= (winno - mwin) % stacks)
3611 split = split + colno;
3612 hrh = (r_g.h / colno);
3613 extra = r_g.h - (colno * hrh);
3617 win_g.x += win_g.w + 2 * border_width;
3618 win_g.w = (r_g.w - msize -
3619 (stacks * 2 * border_width)) / stacks;
3621 win_g.w += (r_g.w - msize -
3622 (stacks * 2 * border_width)) % stacks;
3626 win_g.h = hrh - 2 * border_width;
3628 h_inc = win->sh.width_inc;
3629 h_base = win->sh.base_width;
3631 h_inc = win->sh.height_inc;
3632 h_base = win->sh.base_height;
3634 if (j == colno - 1) {
3635 win_g.h = hrh + extra;
3636 } else if (h_inc > 1 && h_inc < h_slice) {
3637 /* adjust for window's requested size increment */
3638 remain = (win_g.h - h_base) % h_inc;
3639 missing = h_inc - remain;
3641 if (missing <= extra || j == 0) {
3653 win_g.y += last_h + 2 * border_width;
3655 if (disable_border && bar_enabled == 0 && winno == 1){
3657 win_g.w += 2 * border_width;
3658 win_g.h += 2 * border_width;
3663 if (X(win) != win_g.y || Y(win) != win_g.x ||
3664 WIDTH(win) != win_g.h || HEIGHT(win) != win_g.w) {
3668 WIDTH(win) = win_g.h;
3669 HEIGHT(win) = win_g.w;
3672 if (X(win) != win_g.x || Y(win) != win_g.y ||
3673 WIDTH(win) != win_g.w || HEIGHT(win) != win_g.h) {
3677 WIDTH(win) = win_g.w;
3678 HEIGHT(win) = win_g.h;
3682 if (bordered != win->bordered) {
3684 win->bordered = bordered;
3700 /* now, stack all the floaters and transients */
3701 TAILQ_FOREACH(win, &ws->winlist, entry) {
3702 if (win->transient == 0 && win->floating == 0)
3704 if (win->iconic == 1)
3706 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
3711 stack_floater(win, ws->r);
3716 stack_floater(fs_win, ws->r);
3722 vertical_config(struct workspace *ws, int id)
3724 DNPRINTF(SWM_D_STACK, "vertical_config: id: %d, workspace: %d\n",
3728 case SWM_ARG_ID_STACKRESET:
3729 case SWM_ARG_ID_STACKINIT:
3730 ws->l_state.vertical_msize = SWM_V_SLICE / 2;
3731 ws->l_state.vertical_mwin = 1;
3732 ws->l_state.vertical_stacks = 1;
3734 case SWM_ARG_ID_MASTERSHRINK:
3735 if (ws->l_state.vertical_msize > 1)
3736 ws->l_state.vertical_msize--;
3738 case SWM_ARG_ID_MASTERGROW:
3739 if (ws->l_state.vertical_msize < SWM_V_SLICE - 1)
3740 ws->l_state.vertical_msize++;
3742 case SWM_ARG_ID_MASTERADD:
3743 ws->l_state.vertical_mwin++;
3745 case SWM_ARG_ID_MASTERDEL:
3746 if (ws->l_state.vertical_mwin > 0)
3747 ws->l_state.vertical_mwin--;
3749 case SWM_ARG_ID_STACKINC:
3750 ws->l_state.vertical_stacks++;
3752 case SWM_ARG_ID_STACKDEC:
3753 if (ws->l_state.vertical_stacks > 1)
3754 ws->l_state.vertical_stacks--;
3756 case SWM_ARG_ID_FLIPLAYOUT:
3757 ws->l_state.vertical_flip = !ws->l_state.vertical_flip;
3765 vertical_stack(struct workspace *ws, struct swm_geometry *g)
3767 DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
3769 stack_master(ws, g, 0, ws->l_state.vertical_flip);
3773 horizontal_config(struct workspace *ws, int id)
3775 DNPRINTF(SWM_D_STACK, "horizontal_config: workspace: %d\n", ws->idx);
3778 case SWM_ARG_ID_STACKRESET:
3779 case SWM_ARG_ID_STACKINIT:
3780 ws->l_state.horizontal_mwin = 1;
3781 ws->l_state.horizontal_msize = SWM_H_SLICE / 2;
3782 ws->l_state.horizontal_stacks = 1;
3784 case SWM_ARG_ID_MASTERSHRINK:
3785 if (ws->l_state.horizontal_msize > 1)
3786 ws->l_state.horizontal_msize--;
3788 case SWM_ARG_ID_MASTERGROW:
3789 if (ws->l_state.horizontal_msize < SWM_H_SLICE - 1)
3790 ws->l_state.horizontal_msize++;
3792 case SWM_ARG_ID_MASTERADD:
3793 ws->l_state.horizontal_mwin++;
3795 case SWM_ARG_ID_MASTERDEL:
3796 if (ws->l_state.horizontal_mwin > 0)
3797 ws->l_state.horizontal_mwin--;
3799 case SWM_ARG_ID_STACKINC:
3800 ws->l_state.horizontal_stacks++;
3802 case SWM_ARG_ID_STACKDEC:
3803 if (ws->l_state.horizontal_stacks > 1)
3804 ws->l_state.horizontal_stacks--;
3806 case SWM_ARG_ID_FLIPLAYOUT:
3807 ws->l_state.horizontal_flip = !ws->l_state.horizontal_flip;
3815 horizontal_stack(struct workspace *ws, struct swm_geometry *g)
3817 DNPRINTF(SWM_D_STACK, "horizontal_stack: workspace: %d\n", ws->idx);
3819 stack_master(ws, g, 1, ws->l_state.horizontal_flip);
3822 /* fullscreen view */
3824 max_stack(struct workspace *ws, struct swm_geometry *g)
3826 struct swm_geometry gg = *g;
3827 struct ws_win *win, *wintrans = NULL, *parent = NULL;
3828 int winno, num_screens;
3830 DNPRINTF(SWM_D_STACK, "max_stack: workspace: %d\n", ws->idx);
3835 winno = count_win(ws, 0);
3836 if (winno == 0 && count_win(ws, 1) == 0)
3839 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3840 TAILQ_FOREACH(win, &ws->winlist, entry) {
3841 if (win->transient) {
3843 parent = find_window(win->transient);
3847 if (win->floating && win->floatmaxed == 0 ) {
3849 * retain geometry for retrieval on exit from
3852 store_float_geom(win, ws->r);
3853 win->floatmaxed = 1;
3856 /* only reconfigure if necessary */
3857 if (X(win) != gg.x || Y(win) != gg.y || WIDTH(win) != gg.w ||
3858 HEIGHT(win) != gg.h) {
3864 WIDTH(win) += 2 * border_width;
3865 HEIGHT(win) += 2 * border_width;
3870 /* unmap only if we don't have multi screen */
3871 if (win != ws->focus)
3872 if (!(num_screens > 1 || outputs > 1))
3876 /* put the last transient on top */
3880 stack_floater(wintrans, ws->r);
3881 ws->focus = get_focus_magic(wintrans);
3886 send_to_ws(struct swm_region *r, union arg *args)
3888 int wsid = args->id;
3889 struct ws_win *win = NULL, *parent;
3890 struct workspace *ws, *nws;
3891 char ws_idx_str[SWM_PROPLEN];
3894 if (wsid >= workspace_limit)
3897 if (r && r->ws && r->ws->focus)
3903 if (win->ws->idx == wsid)
3906 DNPRINTF(SWM_D_MOVE, "send_to_ws: window: 0x%x\n", win->id);
3909 nws = &win->s->ws[wsid];
3911 a.id = SWM_ARG_ID_FOCUSPREV;
3913 if (win->transient) {
3914 parent = find_window(win->transient);
3916 unmap_window(parent);
3917 TAILQ_REMOVE(&ws->winlist, parent, entry);
3918 TAILQ_INSERT_TAIL(&nws->winlist, parent, entry);
3923 TAILQ_REMOVE(&ws->winlist, win, entry);
3924 TAILQ_INSERT_TAIL(&nws->winlist, win, entry);
3925 if (TAILQ_EMPTY(&ws->winlist))
3926 r->ws->focus = NULL;
3929 /* Try to update the window's workspace property */
3930 if (snprintf(ws_idx_str, SWM_PROPLEN, "%d", nws->idx) < SWM_PROPLEN) {
3931 DNPRINTF(SWM_D_PROP, "send_to_ws: set property: _SWM_WS: %s\n",
3933 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
3934 a_swm_ws, XCB_ATOM_STRING, 8, strlen(ws_idx_str),
3945 pressbutton(struct swm_region *r, union arg *args)
3947 /* suppress unused warning since var is needed */
3950 xcb_test_fake_input(conn, XCB_BUTTON_PRESS, args->id,
3951 XCB_CURRENT_TIME, XCB_WINDOW_NONE, 0, 0, 0);
3952 xcb_test_fake_input(conn, XCB_BUTTON_RELEASE, args->id,
3953 XCB_CURRENT_TIME, XCB_WINDOW_NONE, 0, 0, 0);
3957 raise_toggle(struct swm_region *r, union arg *args)
3959 /* suppress unused warning since var is needed */
3962 if (r == NULL || r->ws == NULL)
3965 r->ws->always_raise = !r->ws->always_raise;
3967 /* bring floaters back to top */
3968 if (r->ws->always_raise == 0)
3975 iconify(struct swm_region *r, union arg *args)
3977 /* suppress unused warning since var is needed */
3980 if (r->ws->focus == NULL)
3983 update_iconic(r->ws->focus, 1);
3989 get_win_name(xcb_window_t win)
3992 xcb_get_property_cookie_t c;
3993 xcb_get_property_reply_t *r;
3995 /* First try _NET_WM_NAME for UTF-8. */
3996 c = xcb_get_property(conn, 0, win, a_netwmname,
3997 XCB_GET_PROPERTY_TYPE_ANY, 0, UINT_MAX);
3998 r = xcb_get_property_reply(conn, c, NULL);
4000 if (!r || r->type == XCB_NONE) {
4002 /* Use WM_NAME instead; no UTF-8. */
4003 c = xcb_get_property(conn, 0, win, XCB_ATOM_WM_NAME,
4004 XCB_GET_PROPERTY_TYPE_ANY, 0, UINT_MAX);
4005 r = xcb_get_property_reply(conn, c, NULL);
4007 if(!r || r->type == XCB_NONE) {
4014 name = strndup(xcb_get_property_value(r),
4015 xcb_get_property_value_length(r));
4022 uniconify(struct swm_region *r, union arg *args)
4029 DNPRINTF(SWM_D_MISC, "uniconify\n");
4031 if (r == NULL || r->ws == NULL)
4034 /* make sure we have anything to uniconify */
4035 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
4036 if (win->ws == NULL)
4037 continue; /* should never happen */
4038 if (win->iconic == 0)
4046 search_resp_action = SWM_SEARCH_UNICONIFY;
4048 spawn_select(r, args, "search", &searchpid);
4050 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4053 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
4054 if (win->ws == NULL)
4055 continue; /* should never happen */
4056 if (win->iconic == 0)
4059 name = get_win_name(win->id);
4062 fprintf(lfile, "%s.%u\n", name, win->id);
4070 name_workspace(struct swm_region *r, union arg *args)
4074 DNPRINTF(SWM_D_MISC, "name_workspace\n");
4080 search_resp_action = SWM_SEARCH_NAME_WORKSPACE;
4082 spawn_select(r, args, "name_workspace", &searchpid);
4084 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4087 fprintf(lfile, "%s", "");
4092 search_workspace(struct swm_region *r, union arg *args)
4095 struct workspace *ws;
4098 DNPRINTF(SWM_D_MISC, "search_workspace\n");
4104 search_resp_action = SWM_SEARCH_SEARCH_WORKSPACE;
4106 spawn_select(r, args, "search", &searchpid);
4108 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4111 for (i = 0; i < workspace_limit; i++) {
4115 fprintf(lfile, "%d%s%s\n", ws->idx + 1,
4116 (ws->name ? ":" : ""), (ws->name ? ws->name : ""));
4123 search_win_cleanup(void)
4125 struct search_window *sw = NULL;
4127 while ((sw = TAILQ_FIRST(&search_wl)) != NULL) {
4128 xcb_destroy_window(conn, sw->indicator);
4129 TAILQ_REMOVE(&search_wl, sw, entry);
4135 search_win(struct swm_region *r, union arg *args)
4137 struct ws_win *win = NULL;
4138 struct search_window *sw = NULL;
4141 int i, width, height;
4149 XRectangle l_ibox, l_lbox;
4151 DNPRINTF(SWM_D_MISC, "search_win\n");
4154 search_resp_action = SWM_SEARCH_SEARCH_WINDOW;
4156 spawn_select(r, args, "search", &searchpid);
4158 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4161 TAILQ_INIT(&search_wl);
4164 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
4165 if (win->iconic == 1)
4168 sw = calloc(1, sizeof(struct search_window));
4170 warn("search_win: calloc");
4172 search_win_cleanup();
4178 snprintf(s, sizeof s, "%d", i);
4181 w = xcb_generate_id(conn);
4182 wa[0] = r->s->c[SWM_S_COLOR_FOCUS].pixel;
4183 wa[1] = r->s->c[SWM_S_COLOR_UNFOCUS].pixel;
4185 if (bar_font_legacy) {
4186 XmbTextExtents(bar_fs, s, len, &l_ibox, &l_lbox);
4187 width = l_lbox.width + 4;
4188 height = bar_fs_extents->max_logical_extent.height + 4;
4190 XftTextExtentsUtf8(display, bar_font, (FcChar8 *)s, len,
4192 width = info.width + 4;
4193 height = bar_font->height + 4;
4196 xcb_create_window(conn, XCB_COPY_FROM_PARENT, w, win->id, 0, 0,
4197 width, height, 1, XCB_WINDOW_CLASS_INPUT_OUTPUT,
4198 XCB_COPY_FROM_PARENT, XCB_CW_BACK_PIXEL |
4199 XCB_CW_BORDER_PIXEL, wa);
4201 xcb_map_window(conn, w);
4204 TAILQ_INSERT_TAIL(&search_wl, sw, entry);
4206 if (bar_font_legacy) {
4207 l_gcv.graphics_exposures = 0;
4208 l_draw = XCreateGC(display, w, 0, &l_gcv);
4210 XSetForeground(display, l_draw,
4211 r->s->c[SWM_S_COLOR_BAR].pixel);
4213 DRAWSTRING(display, w, bar_fs, l_draw, 2,
4214 (bar_fs_extents->max_logical_extent.height -
4215 l_lbox.height) / 2 - l_lbox.y, s, len);
4217 XFreeGC(display, l_draw);
4220 draw = XftDrawCreate(display, w,
4221 DefaultVisual(display, r->s->idx),
4222 DefaultColormap(display, r->s->idx));
4224 XftDrawStringUtf8(draw, &bar_font_color, bar_font, 2,
4225 (HEIGHT(r->bar) + bar_font->height) / 2 -
4226 bar_font->descent, (FcChar8 *)s, len);
4228 XftDrawDestroy(draw);
4231 DNPRINTF(SWM_D_MISC, "search_win: mapped window: 0x%x\n", w);
4233 fprintf(lfile, "%d\n", i);
4243 search_resp_uniconify(char *resp, unsigned long len)
4249 DNPRINTF(SWM_D_MISC, "search_resp_uniconify: resp: %s\n", resp);
4251 TAILQ_FOREACH(win, &search_r->ws->winlist, entry) {
4252 if (win->iconic == 0)
4254 name = get_win_name(win->id);
4257 if (asprintf(&s, "%s.%u", name, win->id) == -1) {
4262 if (strncmp(s, resp, len) == 0) {
4263 /* XXX this should be a callback to generalize */
4264 update_iconic(win, 0);
4274 search_resp_name_workspace(char *resp, unsigned long len)
4276 struct workspace *ws;
4278 DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: resp: %s\n", resp);
4280 if (search_r->ws == NULL)
4285 free(search_r->ws->name);
4286 search_r->ws->name = NULL;
4290 ws->name = strdup(resp);
4291 if (ws->name == NULL) {
4292 DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: "
4293 "strdup: %s", strerror(errno));
4300 search_resp_search_workspace(char *resp)
4307 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: resp: %s\n", resp);
4311 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: strdup: %s",
4318 ws_idx = (int)strtonum(q, 1, workspace_limit, &errstr);
4320 DNPRINTF(SWM_D_MISC, "workspace idx is %s: %s",
4327 switchws(search_r, &a);
4331 search_resp_search_window(char *resp)
4336 struct search_window *sw;
4338 DNPRINTF(SWM_D_MISC, "search_resp_search_window: resp: %s\n", resp);
4342 DNPRINTF(SWM_D_MISC, "search_resp_search_window: strdup: %s",
4347 idx = (int)strtonum(s, 1, INT_MAX, &errstr);
4349 DNPRINTF(SWM_D_MISC, "window idx is %s: %s",
4356 TAILQ_FOREACH(sw, &search_wl, entry)
4357 if (idx == sw->idx) {
4363 #define MAX_RESP_LEN 1024
4366 search_do_resp(void)
4372 DNPRINTF(SWM_D_MISC, "search_do_resp:\n");
4377 if ((resp = calloc(1, MAX_RESP_LEN + 1)) == NULL) {
4378 warn("search: calloc");
4382 rbytes = read(select_resp_pipe[0], resp, MAX_RESP_LEN);
4384 warn("search: read error");
4387 resp[rbytes] = '\0';
4390 * Older versions of dmenu (Atleast pre 4.4.1) do not send a
4391 * newline, so work around that by sanitizing the resp now.
4393 resp[strcspn(resp, "\n")] = '\0';
4396 switch (search_resp_action) {
4397 case SWM_SEARCH_UNICONIFY:
4398 search_resp_uniconify(resp, len);
4400 case SWM_SEARCH_NAME_WORKSPACE:
4401 search_resp_name_workspace(resp, len);
4403 case SWM_SEARCH_SEARCH_WORKSPACE:
4404 search_resp_search_workspace(resp);
4406 case SWM_SEARCH_SEARCH_WINDOW:
4407 search_resp_search_window(resp);
4412 if (search_resp_action == SWM_SEARCH_SEARCH_WINDOW)
4413 search_win_cleanup();
4415 search_resp_action = SWM_SEARCH_NONE;
4416 close(select_resp_pipe[0]);
4423 wkill(struct swm_region *r, union arg *args)
4425 DNPRINTF(SWM_D_MISC, "wkill: id: %d\n", args->id);
4427 if (r->ws->focus == NULL)
4430 if (args->id == SWM_ARG_ID_KILLWINDOW)
4431 xcb_kill_client(conn, r->ws->focus->id);
4433 if (r->ws->focus->can_delete)
4434 client_msg(r->ws->focus, a_delete, 0);
4441 floating_toggle_win(struct ws_win *win)
4443 struct swm_region *r;
4453 /* reject floating toggles in max stack mode */
4454 if (win->ws->cur_layout == &layouts[SWM_MAX_STACK])
4457 if (win->floating) {
4458 if (!win->floatmaxed) {
4459 /* retain position for refloat */
4460 store_float_geom(win, r);
4464 load_float_geom(win, r);
4468 ewmh_update_actions(win);
4474 floating_toggle(struct swm_region *r, union arg *args)
4476 struct ws_win *win = r->ws->focus;
4478 /* suppress unused warning since var is needed */
4484 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
4487 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
4488 _NET_WM_STATE_TOGGLE);
4492 if (win == win->ws->focus)
4499 constrain_window(struct ws_win *win, struct swm_region *r, int resizable)
4501 if (MAX_X(win) + BORDER(win) > MAX_X(r)) {
4503 WIDTH(win) = MAX_X(r) - X(win) - BORDER(win);
4505 X(win) = MAX_X(r)- WIDTH(win) - BORDER(win);
4508 if (X(win) + BORDER(win) < X(r)) {
4510 WIDTH(win) -= X(r) - X(win) - BORDER(win);
4512 X(win) = X(r) - BORDER(win);
4515 if (MAX_Y(win) + BORDER(win) > MAX_Y(r)) {
4517 HEIGHT(win) = MAX_Y(r) - Y(win) - BORDER(win);
4519 Y(win) = MAX_Y(r) - HEIGHT(win) - BORDER(win);
4522 if (Y(win) + BORDER(win) < Y(r)) {
4524 HEIGHT(win) -= Y(r) - Y(win) - BORDER(win);
4526 Y(win) = Y(r) - BORDER(win);
4532 if (HEIGHT(win) < 1)
4538 update_window(struct ws_win *win)
4543 mask = XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
4544 XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT |
4545 XCB_CONFIG_WINDOW_BORDER_WIDTH;
4549 wc[3] = HEIGHT(win);
4550 wc[4] = BORDER(win);
4552 DNPRINTF(SWM_D_EVENT, "update_window: window: 0x%x, (x,y) w x h: "
4553 "(%d,%d) %d x %d, bordered: %s\n", win->id, wc[0], wc[1], wc[2],
4554 wc[3], YESNO(win->bordered));
4556 xcb_configure_window(conn, win->id, mask, wc);
4559 #define SWM_RESIZE_STEPS (50)
4562 resize(struct ws_win *win, union arg *args)
4564 xcb_timestamp_t timestamp = 0;
4565 struct swm_region *r = NULL;
4566 int resize_step = 0;
4567 struct swm_geometry g;
4568 int top = 0, left = 0, resizing;
4570 unsigned int shape; /* cursor style */
4571 xcb_cursor_t cursor;
4572 xcb_font_t cursor_font;
4573 xcb_query_pointer_reply_t *xpr;
4574 xcb_generic_event_t *evt;
4575 xcb_motion_notify_event_t *mne;
4581 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
4584 DNPRINTF(SWM_D_EVENT, "resize: window: 0x%x, floating: %s, "
4585 "transient: 0x%x\n", win->id, YESNO(win->floating),
4588 if (!(win->transient != 0 || win->floating != 0))
4591 /* reject resizes in max mode for floaters (transient ok) */
4592 if (win->floatmaxed)
4596 ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
4604 case SWM_ARG_ID_WIDTHSHRINK:
4605 WIDTH(win) -= SWM_RESIZE_STEPS;
4608 case SWM_ARG_ID_WIDTHGROW:
4609 WIDTH(win) += SWM_RESIZE_STEPS;
4612 case SWM_ARG_ID_HEIGHTSHRINK:
4613 HEIGHT(win) -= SWM_RESIZE_STEPS;
4616 case SWM_ARG_ID_HEIGHTGROW:
4617 HEIGHT(win) += SWM_RESIZE_STEPS;
4624 constrain_window(win, r, 1);
4626 store_float_geom(win,r);
4630 /* get cursor offset from window root */
4631 xpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, win->id),
4638 if (xpr->win_x < WIDTH(win) / 2)
4641 if (xpr->win_y < HEIGHT(win) / 2)
4644 if (args->id == SWM_ARG_ID_CENTER)
4647 shape = (left) ? XC_top_left_corner : XC_top_right_corner;
4649 shape = (left) ? XC_bottom_left_corner : XC_bottom_right_corner;
4651 cursor_font = xcb_generate_id(conn);
4652 xcb_open_font(conn, cursor_font, strlen("cursor"), "cursor");
4654 cursor = xcb_generate_id(conn);
4655 xcb_create_glyph_cursor(conn, cursor, cursor_font, cursor_font,
4656 shape, shape + 1, 0, 0, 0, 0xffff, 0xffff, 0xffff);
4658 xcb_grab_pointer(conn, 0, win->id, MOUSEMASK,
4659 XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, XCB_WINDOW_NONE, cursor,
4664 while ((evt = xcb_wait_for_event(conn)) && resizing) {
4665 switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
4666 case XCB_BUTTON_RELEASE:
4667 DNPRINTF(SWM_D_EVENT, "resize: BUTTON_RELEASE\n");
4670 case XCB_MOTION_NOTIFY:
4671 mne = (xcb_motion_notify_event_t *)evt;
4672 /* cursor offset/delta from start of the operation */
4673 dx = mne->root_x - xpr->root_x;
4674 dy = mne->root_y - xpr->root_y;
4680 if (args->id == SWM_ARG_ID_CENTER) {
4681 if (g.h / 2 + dy < 1)
4685 HEIGHT(win) = g.h + 2 * dy;
4693 HEIGHT(win) = g.h + dy;
4700 if (args->id == SWM_ARG_ID_CENTER) {
4701 if (g.w / 2 + dx < 1)
4705 WIDTH(win) = g.w + 2 * dx;
4713 WIDTH(win) = g.w + dx;
4716 constrain_window(win, r, 1);
4718 /* not free, don't sync more than 120 times / second */
4719 if ((mne->time - timestamp) > (1000 / 120) ) {
4720 timestamp = mne->time;
4735 store_float_geom(win,r);
4737 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
4738 xcb_free_cursor(conn, cursor);
4739 xcb_close_font(conn, cursor_font);
4741 DNPRINTF(SWM_D_EVENT, "resize: done.\n");
4745 resize_step(struct swm_region *r, union arg *args)
4747 struct ws_win *win = NULL;
4749 if (r && r->ws && r->ws->focus)
4757 #define SWM_MOVE_STEPS (50)
4760 move(struct ws_win *win, union arg *args)
4762 xcb_timestamp_t timestamp = 0;
4763 int move_step = 0, moving;
4764 struct swm_region *r = NULL;
4765 xcb_font_t cursor_font;
4766 xcb_cursor_t cursor;
4767 xcb_query_pointer_reply_t *qpr;
4768 xcb_generic_event_t *evt;
4769 xcb_motion_notify_event_t *mne;
4775 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
4778 DNPRINTF(SWM_D_EVENT, "move: window: 0x%x, floating: %s, transient: "
4779 "0x%x\n", win->id, YESNO(win->floating), win->transient);
4781 /* in max_stack mode should only move transients */
4782 if (win->ws->cur_layout == &layouts[SWM_MAX_STACK] && !win->transient)
4786 if (win->floating == 0 && !win->transient) {
4787 store_float_geom(win, r);
4788 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
4791 ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
4800 case SWM_ARG_ID_MOVELEFT:
4801 X(win) -= (SWM_MOVE_STEPS - border_width);
4804 case SWM_ARG_ID_MOVERIGHT:
4805 X(win) += (SWM_MOVE_STEPS - border_width);
4808 case SWM_ARG_ID_MOVEUP:
4809 Y(win) -= (SWM_MOVE_STEPS - border_width);
4812 case SWM_ARG_ID_MOVEDOWN:
4813 Y(win) += (SWM_MOVE_STEPS - border_width);
4820 constrain_window(win, r, 0);
4822 store_float_geom(win, r);
4826 cursor_font = xcb_generate_id(conn);
4827 xcb_open_font(conn, cursor_font, strlen("cursor"), "cursor");
4829 cursor = xcb_generate_id(conn);
4830 xcb_create_glyph_cursor(conn, cursor, cursor_font, cursor_font,
4831 XC_fleur, XC_fleur + 1, 0, 0, 0, 0xffff, 0xffff, 0xffff);
4833 xcb_grab_pointer(conn, 0, win->id, MOUSEMASK,
4834 XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC,
4835 XCB_WINDOW_NONE, cursor, XCB_CURRENT_TIME);
4837 /* get cursor offset from window root */
4838 qpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, win->id),
4841 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
4842 xcb_free_cursor(conn, cursor);
4843 xcb_close_font(conn, cursor_font);
4849 while ((evt = xcb_wait_for_event(conn)) && moving) {
4850 switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
4851 case XCB_BUTTON_RELEASE:
4852 DNPRINTF(SWM_D_EVENT, "move: BUTTON_RELEASE\n");
4855 case XCB_MOTION_NOTIFY:
4856 mne = (xcb_motion_notify_event_t *)evt;
4857 X(win) = mne->root_x - qpr->win_x - border_width;
4858 Y(win) = mne->root_y - qpr->win_y - border_width;
4860 constrain_window(win, r, 0);
4862 /* not free, don't sync more than 120 times / second */
4863 if ((mne->time - timestamp) > (1000 / 120) ) {
4864 timestamp = mne->time;
4879 store_float_geom(win, r);
4881 xcb_free_cursor(conn, cursor);
4882 xcb_close_font(conn, cursor_font);
4883 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
4884 DNPRINTF(SWM_D_EVENT, "move: done.\n");
4888 move_step(struct swm_region *r, union arg *args)
4890 struct ws_win *win = NULL;
4892 if (r && r->ws && r->ws->focus)
4897 if (!(win->transient != 0 || win->floating != 0))
4904 /* user/key callable function IDs */
4954 KF_SEARCH_WORKSPACE,
4995 KF_DUMPWINS, /* MUST BE LAST */
4999 /* key definitions */
5001 char name[SWM_FUNCNAME_LEN];
5002 void (*func)(struct swm_region *r, union arg *);
5004 } keyfuncs[KF_INVALID + 1] = {
5005 /* name function argument */
5006 { "bar_toggle", bar_toggle, {0} },
5007 { "button2", pressbutton, {2} },
5008 { "cycle_layout", cycle_layout, {0} },
5009 { "flip_layout", stack_config, {.id = SWM_ARG_ID_FLIPLAYOUT} },
5010 { "float_toggle", floating_toggle,{0} },
5011 { "focus_main", focus, {.id = SWM_ARG_ID_FOCUSMAIN} },
5012 { "focus_next", focus, {.id = SWM_ARG_ID_FOCUSNEXT} },
5013 { "focus_prev", focus, {.id = SWM_ARG_ID_FOCUSPREV} },
5014 { "height_grow", resize_step, {.id = SWM_ARG_ID_HEIGHTGROW} },
5015 { "height_shrink", resize_step, {.id = SWM_ARG_ID_HEIGHTSHRINK} },
5016 { "iconify", iconify, {0} },
5017 { "master_shrink", stack_config, {.id = SWM_ARG_ID_MASTERSHRINK} },
5018 { "master_grow", stack_config, {.id = SWM_ARG_ID_MASTERGROW} },
5019 { "master_add", stack_config, {.id = SWM_ARG_ID_MASTERADD} },
5020 { "master_del", stack_config, {.id = SWM_ARG_ID_MASTERDEL} },
5021 { "move_down", move_step, {.id = SWM_ARG_ID_MOVEDOWN} },
5022 { "move_left", move_step, {.id = SWM_ARG_ID_MOVELEFT} },
5023 { "move_right", move_step, {.id = SWM_ARG_ID_MOVERIGHT} },
5024 { "move_up", move_step, {.id = SWM_ARG_ID_MOVEUP} },
5025 { "mvws_1", send_to_ws, {.id = 0} },
5026 { "mvws_2", send_to_ws, {.id = 1} },
5027 { "mvws_3", send_to_ws, {.id = 2} },
5028 { "mvws_4", send_to_ws, {.id = 3} },
5029 { "mvws_5", send_to_ws, {.id = 4} },
5030 { "mvws_6", send_to_ws, {.id = 5} },
5031 { "mvws_7", send_to_ws, {.id = 6} },
5032 { "mvws_8", send_to_ws, {.id = 7} },
5033 { "mvws_9", send_to_ws, {.id = 8} },
5034 { "mvws_10", send_to_ws, {.id = 9} },
5035 { "mvws_11", send_to_ws, {.id = 10} },
5036 { "mvws_12", send_to_ws, {.id = 11} },
5037 { "mvws_13", send_to_ws, {.id = 12} },
5038 { "mvws_14", send_to_ws, {.id = 13} },
5039 { "mvws_15", send_to_ws, {.id = 14} },
5040 { "mvws_16", send_to_ws, {.id = 15} },
5041 { "mvws_17", send_to_ws, {.id = 16} },
5042 { "mvws_18", send_to_ws, {.id = 17} },
5043 { "mvws_19", send_to_ws, {.id = 18} },
5044 { "mvws_20", send_to_ws, {.id = 19} },
5045 { "mvws_21", send_to_ws, {.id = 20} },
5046 { "mvws_22", send_to_ws, {.id = 21} },
5047 { "name_workspace", name_workspace, {0} },
5048 { "quit", quit, {0} },
5049 { "raise_toggle", raise_toggle, {0} },
5050 { "restart", restart, {0} },
5051 { "screen_next", cyclescr, {.id = SWM_ARG_ID_CYCLESC_UP} },
5052 { "screen_prev", cyclescr, {.id = SWM_ARG_ID_CYCLESC_DOWN} },
5053 { "search_win", search_win, {0} },
5054 { "search_workspace", search_workspace, {0} },
5055 { "spawn_custom", NULL, {0} },
5056 { "stack_inc", stack_config, {.id = SWM_ARG_ID_STACKINC} },
5057 { "stack_dec", stack_config, {.id = SWM_ARG_ID_STACKDEC} },
5058 { "stack_reset", stack_config, {.id = SWM_ARG_ID_STACKRESET} },
5059 { "swap_main", swapwin, {.id = SWM_ARG_ID_SWAPMAIN} },
5060 { "swap_next", swapwin, {.id = SWM_ARG_ID_SWAPNEXT} },
5061 { "swap_prev", swapwin, {.id = SWM_ARG_ID_SWAPPREV} },
5062 { "uniconify", uniconify, {0} },
5063 { "version", version, {0} },
5064 { "width_grow", resize_step, {.id = SWM_ARG_ID_WIDTHGROW} },
5065 { "width_shrink", resize_step, {.id = SWM_ARG_ID_WIDTHSHRINK} },
5066 { "wind_del", wkill, {.id = SWM_ARG_ID_DELETEWINDOW} },
5067 { "wind_kill", wkill, {.id = SWM_ARG_ID_KILLWINDOW} },
5068 { "ws_1", switchws, {.id = 0} },
5069 { "ws_2", switchws, {.id = 1} },
5070 { "ws_3", switchws, {.id = 2} },
5071 { "ws_4", switchws, {.id = 3} },
5072 { "ws_5", switchws, {.id = 4} },
5073 { "ws_6", switchws, {.id = 5} },
5074 { "ws_7", switchws, {.id = 6} },
5075 { "ws_8", switchws, {.id = 7} },
5076 { "ws_9", switchws, {.id = 8} },
5077 { "ws_10", switchws, {.id = 9} },
5078 { "ws_11", switchws, {.id = 10} },
5079 { "ws_12", switchws, {.id = 11} },
5080 { "ws_13", switchws, {.id = 12} },
5081 { "ws_14", switchws, {.id = 13} },
5082 { "ws_15", switchws, {.id = 14} },
5083 { "ws_16", switchws, {.id = 15} },
5084 { "ws_17", switchws, {.id = 16} },
5085 { "ws_18", switchws, {.id = 17} },
5086 { "ws_19", switchws, {.id = 18} },
5087 { "ws_20", switchws, {.id = 19} },
5088 { "ws_21", switchws, {.id = 20} },
5089 { "ws_22", switchws, {.id = 21} },
5090 { "ws_next", cyclews, {.id = SWM_ARG_ID_CYCLEWS_UP} },
5091 { "ws_next_all", cyclews, {.id = SWM_ARG_ID_CYCLEWS_UP_ALL} },
5092 { "ws_prev", cyclews, {.id = SWM_ARG_ID_CYCLEWS_DOWN} },
5093 { "ws_prev_all", cyclews, {.id = SWM_ARG_ID_CYCLEWS_DOWN_ALL} },
5094 { "ws_prior", priorws, {0} },
5095 { "dumpwins", dumpwins, {0} }, /* MUST BE LAST */
5096 { "invalid key func", NULL, {0} },
5099 RB_ENTRY(key) entry;
5102 enum keyfuncid funcid;
5105 RB_HEAD(key_tree, key);
5108 key_cmp(struct key *kp1, struct key *kp2)
5110 if (kp1->keysym < kp2->keysym)
5112 if (kp1->keysym > kp2->keysym)
5115 if (kp1->mod < kp2->mod)
5117 if (kp1->mod > kp2->mod)
5123 RB_GENERATE(key_tree, key, entry, key_cmp);
5124 struct key_tree keys;
5127 enum { client_click, root_click };
5129 unsigned int action;
5131 unsigned int button;
5132 void (*func)(struct ws_win *, union arg *);
5135 #define MODKEY_SHIFT MODKEY | XCB_MOD_MASK_SHIFT
5136 /* action key mouse button func args */
5137 { client_click, MODKEY, XCB_BUTTON_INDEX_3, resize, {.id = SWM_ARG_ID_DONTCENTER} },
5138 { client_click, MODKEY_SHIFT, XCB_BUTTON_INDEX_3, resize, {.id = SWM_ARG_ID_CENTER} },
5139 { client_click, MODKEY, XCB_BUTTON_INDEX_1, move, {0} },
5144 update_modkey(unsigned int mod)
5150 RB_FOREACH(kp, key_tree, &keys)
5151 if (kp->mod & XCB_MOD_MASK_SHIFT)
5152 kp->mod = mod | XCB_MOD_MASK_SHIFT;
5156 for (i = 0; i < LENGTH(buttons); i++)
5157 if (buttons[i].mask & XCB_MOD_MASK_SHIFT)
5158 buttons[i].mask = mod | XCB_MOD_MASK_SHIFT;
5160 buttons[i].mask = mod;
5165 TAILQ_ENTRY(spawn_prog) entry;
5170 TAILQ_HEAD(spawn_list, spawn_prog);
5171 struct spawn_list spawns = TAILQ_HEAD_INITIALIZER(spawns);
5174 spawn_expand(struct swm_region *r, union arg *args, char *spawn_name,
5177 struct spawn_prog *prog = NULL;
5179 char *ap, **real_args;
5181 /* suppress unused warning since var is needed */
5184 DNPRINTF(SWM_D_SPAWN, "spawn_expand: %s\n", spawn_name);
5187 TAILQ_FOREACH(prog, &spawns, entry) {
5188 if (!strcasecmp(spawn_name, prog->name))
5192 warnx("spawn_custom: program %s not found", spawn_name);
5196 /* make room for expanded args */
5197 if ((real_args = calloc(prog->argc + 1, sizeof(char *))) == NULL)
5198 err(1, "spawn_custom: calloc real_args");
5200 /* expand spawn_args into real_args */
5201 for (i = 0; i < prog->argc; i++) {
5203 DNPRINTF(SWM_D_SPAWN, "spawn_custom: raw arg: %s\n", ap);
5204 if (!strcasecmp(ap, "$bar_border")) {
5206 strdup(r->s->c[SWM_S_COLOR_BAR_BORDER].name))
5208 err(1, "spawn_custom border color");
5209 } else if (!strcasecmp(ap, "$bar_color")) {
5211 strdup(r->s->c[SWM_S_COLOR_BAR].name))
5213 err(1, "spawn_custom bar color");
5214 } else if (!strcasecmp(ap, "$bar_font")) {
5215 if ((real_args[i] = strdup(bar_fonts))
5217 err(1, "spawn_custom bar fonts");
5218 } else if (!strcasecmp(ap, "$bar_font_color")) {
5220 strdup(r->s->c[SWM_S_COLOR_BAR_FONT].name))
5222 err(1, "spawn_custom color font");
5223 } else if (!strcasecmp(ap, "$color_focus")) {
5225 strdup(r->s->c[SWM_S_COLOR_FOCUS].name))
5227 err(1, "spawn_custom color focus");
5228 } else if (!strcasecmp(ap, "$color_unfocus")) {
5230 strdup(r->s->c[SWM_S_COLOR_UNFOCUS].name))
5232 err(1, "spawn_custom color unfocus");
5234 /* no match --> copy as is */
5235 if ((real_args[i] = strdup(ap)) == NULL)
5236 err(1, "spawn_custom strdup(ap)");
5238 DNPRINTF(SWM_D_SPAWN, "spawn_custom: cooked arg: %s\n",
5243 DNPRINTF(SWM_D_SPAWN, "spawn_custom: result: ");
5244 for (i = 0; i < prog->argc; i++)
5245 DNPRINTF(SWM_D_SPAWN, "\"%s\" ", real_args[i]);
5246 DNPRINTF(SWM_D_SPAWN, "\n");
5248 *ret_args = real_args;
5249 return (prog->argc);
5253 spawn_custom(struct swm_region *r, union arg *args, char *spawn_name)
5259 if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
5263 spawn(r->ws->idx, &a, 1);
5265 for (i = 0; i < spawn_argc; i++)
5271 spawn_select(struct swm_region *r, union arg *args, char *spawn_name, int *pid)
5277 if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
5281 if (pipe(select_list_pipe) == -1)
5282 err(1, "pipe error");
5283 if (pipe(select_resp_pipe) == -1)
5284 err(1, "pipe error");
5286 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
5287 err(1, "could not disable SIGPIPE");
5288 switch (*pid = fork()) {
5290 err(1, "cannot fork");
5293 if (dup2(select_list_pipe[0], 0) == -1)
5295 if (dup2(select_resp_pipe[1], 1) == -1)
5297 close(select_list_pipe[1]);
5298 close(select_resp_pipe[0]);
5299 spawn(r->ws->idx, &a, 0);
5301 default: /* parent */
5302 close(select_list_pipe[0]);
5303 close(select_resp_pipe[1]);
5307 for (i = 0; i < spawn_argc; i++)
5313 spawn_insert(char *name, char *args)
5315 char *arg, *cp, *ptr;
5316 struct spawn_prog *sp;
5318 DNPRINTF(SWM_D_SPAWN, "spawn_insert: %s\n", name);
5320 if ((sp = calloc(1, sizeof *sp)) == NULL)
5321 err(1, "spawn_insert: calloc");
5322 if ((sp->name = strdup(name)) == NULL)
5323 err(1, "spawn_insert: strdup");
5325 /* convert the arguments to an argument list */
5326 if ((ptr = cp = strdup(args)) == NULL)
5327 err(1, "spawn_insert: strdup");
5328 while ((arg = strsep(&ptr, " \t")) != NULL) {
5329 /* empty field; skip it */
5334 if ((sp->argv = realloc(sp->argv, sp->argc *
5335 sizeof *sp->argv)) == NULL)
5336 err(1, "spawn_insert: realloc");
5337 if ((sp->argv[sp->argc - 1] = strdup(arg)) == NULL)
5338 err(1, "spawn_insert: strdup");
5342 TAILQ_INSERT_TAIL(&spawns, sp, entry);
5343 DNPRINTF(SWM_D_SPAWN, "spawn_insert: leave\n");
5347 spawn_remove(struct spawn_prog *sp)
5351 DNPRINTF(SWM_D_SPAWN, "spawn_remove: %s\n", sp->name);
5353 TAILQ_REMOVE(&spawns, sp, entry);
5354 for (i = 0; i < sp->argc; i++)
5360 DNPRINTF(SWM_D_SPAWN, "spawn_remove: leave\n");
5364 spawn_replace(struct spawn_prog *sp, char *name, char *args)
5366 DNPRINTF(SWM_D_SPAWN, "spawn_replace: %s [%s]\n", sp->name, name);
5369 spawn_insert(name, args);
5371 DNPRINTF(SWM_D_SPAWN, "spawn_replace: leave\n");
5375 setspawn(char *name, char *args)
5377 struct spawn_prog *sp;
5379 DNPRINTF(SWM_D_SPAWN, "setspawn: %s\n", name);
5384 TAILQ_FOREACH(sp, &spawns, entry) {
5385 if (!strcmp(sp->name, name)) {
5389 spawn_replace(sp, name, args);
5390 DNPRINTF(SWM_D_SPAWN, "setspawn: leave\n");
5394 if (*args == '\0') {
5395 warnx("error: setspawn: cannot find program: %s", name);
5399 spawn_insert(name, args);
5400 DNPRINTF(SWM_D_SPAWN, "setspawn: leave\n");
5404 setconfspawn(char *selector, char *value, int flags)
5408 /* suppress unused warning since var is needed */
5411 args = expand_tilde(value);
5413 DNPRINTF(SWM_D_SPAWN, "setconfspawn: [%s] [%s]\n", selector, args);
5415 setspawn(selector, args);
5418 DNPRINTF(SWM_D_SPAWN, "setconfspawn: done.\n");
5425 setconfspawn("term", "xterm", 0);
5426 setconfspawn("spawn_term", "xterm", 0);
5427 setconfspawn("screenshot_all", "screenshot.sh full", 0);
5428 setconfspawn("screenshot_wind", "screenshot.sh window", 0);
5429 setconfspawn("lock", "xlock", 0);
5430 setconfspawn("initscr", "initscreen.sh", 0);
5431 setconfspawn("menu", "dmenu_run"
5434 " -nf $bar_font_color"
5436 " -sf $bar_color", 0);
5437 setconfspawn("search", "dmenu"
5441 " -nf $bar_font_color"
5443 " -sf $bar_color", 0);
5444 setconfspawn("name_workspace", "dmenu"
5448 " -nf $bar_font_color"
5450 " -sf $bar_color", 0);
5454 #define SWM_MODNAME_SIZE 32
5455 #define SWM_KEY_WS "\n+ \t"
5457 parsekeys(char *keystr, unsigned int currmod, unsigned int *mod, KeySym *ks)
5461 DNPRINTF(SWM_D_KEY, "parsekeys: enter [%s]\n", keystr);
5462 if (mod == NULL || ks == NULL) {
5463 DNPRINTF(SWM_D_KEY, "parsekeys: no mod or key vars\n");
5466 if (keystr == NULL || strlen(keystr) == 0) {
5467 DNPRINTF(SWM_D_KEY, "parsekeys: no keystr\n");
5471 *ks = XCB_NO_SYMBOL;
5473 while ((name = strsep(&cp, SWM_KEY_WS)) != NULL) {
5474 DNPRINTF(SWM_D_KEY, "parsekeys: key [%s]\n", name);
5476 cp += (long)strspn(cp, SWM_KEY_WS);
5477 if (strncasecmp(name, "MOD", SWM_MODNAME_SIZE) == 0)
5479 else if (!strncasecmp(name, "Mod1", SWM_MODNAME_SIZE))
5480 *mod |= XCB_MOD_MASK_1;
5481 else if (!strncasecmp(name, "Mod2", SWM_MODNAME_SIZE))
5482 *mod += XCB_MOD_MASK_2;
5483 else if (!strncmp(name, "Mod3", SWM_MODNAME_SIZE))
5484 *mod |= XCB_MOD_MASK_3;
5485 else if (!strncmp(name, "Mod4", SWM_MODNAME_SIZE))
5486 *mod |= XCB_MOD_MASK_4;
5487 else if (strncasecmp(name, "SHIFT", SWM_MODNAME_SIZE) == 0)
5488 *mod |= XCB_MOD_MASK_SHIFT;
5489 else if (strncasecmp(name, "CONTROL", SWM_MODNAME_SIZE) == 0)
5490 *mod |= XCB_MOD_MASK_CONTROL;
5492 *ks = XStringToKeysym(name);
5493 XConvertCase(*ks, ks, &uks);
5494 if (ks == XCB_NO_SYMBOL) {
5496 "parsekeys: invalid key %s\n",
5502 DNPRINTF(SWM_D_KEY, "parsekeys: leave ok\n");
5507 strdupsafe(char *str)
5512 return (strdup(str));
5516 key_insert(unsigned int mod, KeySym ks, enum keyfuncid kfid, char *spawn_name)
5520 DNPRINTF(SWM_D_KEY, "key_insert: enter %s [%s]\n",
5521 keyfuncs[kfid].name, spawn_name);
5523 if ((kp = malloc(sizeof *kp)) == NULL)
5524 err(1, "key_insert: malloc");
5529 kp->spawn_name = strdupsafe(spawn_name);
5530 RB_INSERT(key_tree, &keys, kp);
5532 DNPRINTF(SWM_D_KEY, "key_insert: leave\n");
5536 key_lookup(unsigned int mod, KeySym ks)
5543 return (RB_FIND(key_tree, &keys, &kp));
5547 key_remove(struct key *kp)
5549 DNPRINTF(SWM_D_KEY, "key_remove: %s\n", keyfuncs[kp->funcid].name);
5551 RB_REMOVE(key_tree, &keys, kp);
5552 free(kp->spawn_name);
5555 DNPRINTF(SWM_D_KEY, "key_remove: leave\n");
5559 key_replace(struct key *kp, unsigned int mod, KeySym ks, enum keyfuncid kfid,
5562 DNPRINTF(SWM_D_KEY, "key_replace: %s [%s]\n", keyfuncs[kp->funcid].name,
5566 key_insert(mod, ks, kfid, spawn_name);
5568 DNPRINTF(SWM_D_KEY, "key_replace: leave\n");
5572 setkeybinding(unsigned int mod, KeySym ks, enum keyfuncid kfid,
5577 DNPRINTF(SWM_D_KEY, "setkeybinding: enter %s [%s]\n",
5578 keyfuncs[kfid].name, spawn_name);
5580 if ((kp = key_lookup(mod, ks)) != NULL) {
5581 if (kfid == KF_INVALID)
5584 key_replace(kp, mod, ks, kfid, spawn_name);
5585 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
5588 if (kfid == KF_INVALID) {
5589 warnx("error: setkeybinding: cannot find mod/key combination");
5590 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
5594 key_insert(mod, ks, kfid, spawn_name);
5595 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
5599 setconfbinding(char *selector, char *value, int flags)
5601 enum keyfuncid kfid;
5604 struct spawn_prog *sp;
5606 /* suppress unused warning since var is needed */
5609 DNPRINTF(SWM_D_KEY, "setconfbinding: enter\n");
5610 if (selector == NULL) {
5611 DNPRINTF(SWM_D_KEY, "setconfbinding: unbind %s\n", value);
5612 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
5614 setkeybinding(mod, ks, kfid, NULL);
5619 /* search by key function name */
5620 for (kfid = 0; kfid < KF_INVALID; (kfid)++) {
5621 if (strncasecmp(selector, keyfuncs[kfid].name,
5622 SWM_FUNCNAME_LEN) == 0) {
5623 DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
5625 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
5626 setkeybinding(mod, ks, kfid, NULL);
5632 /* search by custom spawn name */
5633 TAILQ_FOREACH(sp, &spawns, entry) {
5634 if (strcasecmp(selector, sp->name) == 0) {
5635 DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
5637 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
5638 setkeybinding(mod, ks, KF_SPAWN_CUSTOM,
5645 DNPRINTF(SWM_D_KEY, "setconfbinding: no match\n");
5652 #define MODKEY_SHIFT MODKEY | XCB_MOD_MASK_SHIFT
5653 setkeybinding(MODKEY, XK_space, KF_CYCLE_LAYOUT,NULL);
5654 setkeybinding(MODKEY_SHIFT, XK_backslash, KF_FLIP_LAYOUT, NULL);
5655 setkeybinding(MODKEY_SHIFT, XK_space, KF_STACK_RESET, NULL);
5656 setkeybinding(MODKEY, XK_h, KF_MASTER_SHRINK, NULL);
5657 setkeybinding(MODKEY, XK_l, KF_MASTER_GROW, NULL);
5658 setkeybinding(MODKEY, XK_comma, KF_MASTER_ADD, NULL);
5659 setkeybinding(MODKEY, XK_period, KF_MASTER_DEL, NULL);
5660 setkeybinding(MODKEY_SHIFT, XK_comma, KF_STACK_INC, NULL);
5661 setkeybinding(MODKEY_SHIFT, XK_period, KF_STACK_DEC, NULL);
5662 setkeybinding(MODKEY, XK_Return, KF_SWAP_MAIN, NULL);
5663 setkeybinding(MODKEY, XK_j, KF_FOCUS_NEXT, NULL);
5664 setkeybinding(MODKEY, XK_k, KF_FOCUS_PREV, NULL);
5665 setkeybinding(MODKEY_SHIFT, XK_j, KF_SWAP_NEXT, NULL);
5666 setkeybinding(MODKEY_SHIFT, XK_k, KF_SWAP_PREV, NULL);
5667 setkeybinding(MODKEY_SHIFT, XK_Return, KF_SPAWN_CUSTOM,"term");
5668 setkeybinding(MODKEY, XK_p, KF_SPAWN_CUSTOM,"menu");
5669 setkeybinding(MODKEY_SHIFT, XK_q, KF_QUIT, NULL);
5670 setkeybinding(MODKEY, XK_q, KF_RESTART, NULL);
5671 setkeybinding(MODKEY, XK_m, KF_FOCUS_MAIN, NULL);
5672 setkeybinding(MODKEY, XK_1, KF_WS_1, NULL);
5673 setkeybinding(MODKEY, XK_2, KF_WS_2, NULL);
5674 setkeybinding(MODKEY, XK_3, KF_WS_3, NULL);
5675 setkeybinding(MODKEY, XK_4, KF_WS_4, NULL);
5676 setkeybinding(MODKEY, XK_5, KF_WS_5, NULL);
5677 setkeybinding(MODKEY, XK_6, KF_WS_6, NULL);
5678 setkeybinding(MODKEY, XK_7, KF_WS_7, NULL);
5679 setkeybinding(MODKEY, XK_8, KF_WS_8, NULL);
5680 setkeybinding(MODKEY, XK_9, KF_WS_9, NULL);
5681 setkeybinding(MODKEY, XK_0, KF_WS_10, NULL);
5682 setkeybinding(MODKEY, XK_F1, KF_WS_11, NULL);
5683 setkeybinding(MODKEY, XK_F2, KF_WS_12, NULL);
5684 setkeybinding(MODKEY, XK_F3, KF_WS_13, NULL);
5685 setkeybinding(MODKEY, XK_F4, KF_WS_14, NULL);
5686 setkeybinding(MODKEY, XK_F5, KF_WS_15, NULL);
5687 setkeybinding(MODKEY, XK_F6, KF_WS_16, NULL);
5688 setkeybinding(MODKEY, XK_F7, KF_WS_17, NULL);
5689 setkeybinding(MODKEY, XK_F8, KF_WS_18, NULL);
5690 setkeybinding(MODKEY, XK_F9, KF_WS_19, NULL);
5691 setkeybinding(MODKEY, XK_F10, KF_WS_20, NULL);
5692 setkeybinding(MODKEY, XK_F11, KF_WS_21, NULL);
5693 setkeybinding(MODKEY, XK_F12, KF_WS_22, NULL);
5694 setkeybinding(MODKEY, XK_Right, KF_WS_NEXT, NULL);
5695 setkeybinding(MODKEY, XK_Left, KF_WS_PREV, NULL);
5696 setkeybinding(MODKEY, XK_Up, KF_WS_NEXT_ALL, NULL);
5697 setkeybinding(MODKEY, XK_Down, KF_WS_PREV_ALL, NULL);
5698 setkeybinding(MODKEY, XK_a, KF_WS_PRIOR, NULL);
5699 setkeybinding(MODKEY_SHIFT, XK_Right, KF_SCREEN_NEXT, NULL);
5700 setkeybinding(MODKEY_SHIFT, XK_Left, KF_SCREEN_PREV, NULL);
5701 setkeybinding(MODKEY_SHIFT, XK_1, KF_MVWS_1, NULL);
5702 setkeybinding(MODKEY_SHIFT, XK_2, KF_MVWS_2, NULL);
5703 setkeybinding(MODKEY_SHIFT, XK_3, KF_MVWS_3, NULL);
5704 setkeybinding(MODKEY_SHIFT, XK_4, KF_MVWS_4, NULL);
5705 setkeybinding(MODKEY_SHIFT, XK_5, KF_MVWS_5, NULL);
5706 setkeybinding(MODKEY_SHIFT, XK_6, KF_MVWS_6, NULL);
5707 setkeybinding(MODKEY_SHIFT, XK_7, KF_MVWS_7, NULL);
5708 setkeybinding(MODKEY_SHIFT, XK_8, KF_MVWS_8, NULL);
5709 setkeybinding(MODKEY_SHIFT, XK_9, KF_MVWS_9, NULL);
5710 setkeybinding(MODKEY_SHIFT, XK_0, KF_MVWS_10, NULL);
5711 setkeybinding(MODKEY_SHIFT, XK_F1, KF_MVWS_11, NULL);
5712 setkeybinding(MODKEY_SHIFT, XK_F2, KF_MVWS_12, NULL);
5713 setkeybinding(MODKEY_SHIFT, XK_F3, KF_MVWS_13, NULL);
5714 setkeybinding(MODKEY_SHIFT, XK_F4, KF_MVWS_14, NULL);
5715 setkeybinding(MODKEY_SHIFT, XK_F5, KF_MVWS_15, NULL);
5716 setkeybinding(MODKEY_SHIFT, XK_F6, KF_MVWS_16, NULL);
5717 setkeybinding(MODKEY_SHIFT, XK_F7, KF_MVWS_17, NULL);
5718 setkeybinding(MODKEY_SHIFT, XK_F8, KF_MVWS_18, NULL);
5719 setkeybinding(MODKEY_SHIFT, XK_F9, KF_MVWS_19, NULL);
5720 setkeybinding(MODKEY_SHIFT, XK_F10, KF_MVWS_20, NULL);
5721 setkeybinding(MODKEY_SHIFT, XK_F11, KF_MVWS_21, NULL);
5722 setkeybinding(MODKEY_SHIFT, XK_F12, KF_MVWS_22, NULL);
5723 setkeybinding(MODKEY, XK_b, KF_BAR_TOGGLE, NULL);
5724 setkeybinding(MODKEY, XK_Tab, KF_FOCUS_NEXT, NULL);
5725 setkeybinding(MODKEY_SHIFT, XK_Tab, KF_FOCUS_PREV, NULL);
5726 setkeybinding(MODKEY_SHIFT, XK_x, KF_WIND_KILL, NULL);
5727 setkeybinding(MODKEY, XK_x, KF_WIND_DEL, NULL);
5728 setkeybinding(MODKEY, XK_s, KF_SPAWN_CUSTOM,"screenshot_all");
5729 setkeybinding(MODKEY_SHIFT, XK_s, KF_SPAWN_CUSTOM,"screenshot_wind");
5730 setkeybinding(MODKEY, XK_t, KF_FLOAT_TOGGLE,NULL);
5731 setkeybinding(MODKEY_SHIFT, XK_v, KF_VERSION, NULL);
5732 setkeybinding(MODKEY_SHIFT, XK_Delete, KF_SPAWN_CUSTOM,"lock");
5733 setkeybinding(MODKEY_SHIFT, XK_i, KF_SPAWN_CUSTOM,"initscr");
5734 setkeybinding(MODKEY, XK_w, KF_ICONIFY, NULL);
5735 setkeybinding(MODKEY_SHIFT, XK_w, KF_UNICONIFY, NULL);
5736 setkeybinding(MODKEY_SHIFT, XK_r, KF_RAISE_TOGGLE,NULL);
5737 setkeybinding(MODKEY, XK_v, KF_BUTTON2, NULL);
5738 setkeybinding(MODKEY, XK_equal, KF_WIDTH_GROW, NULL);
5739 setkeybinding(MODKEY, XK_minus, KF_WIDTH_SHRINK,NULL);
5740 setkeybinding(MODKEY_SHIFT, XK_equal, KF_HEIGHT_GROW,NULL);
5741 setkeybinding(MODKEY_SHIFT, XK_minus, KF_HEIGHT_SHRINK,NULL);
5742 setkeybinding(MODKEY, XK_bracketleft, KF_MOVE_LEFT,NULL);
5743 setkeybinding(MODKEY, XK_bracketright,KF_MOVE_RIGHT,NULL);
5744 setkeybinding(MODKEY_SHIFT, XK_bracketleft, KF_MOVE_UP, NULL);
5745 setkeybinding(MODKEY_SHIFT, XK_bracketright,KF_MOVE_DOWN,NULL);
5746 setkeybinding(MODKEY_SHIFT, XK_slash, KF_NAME_WORKSPACE,NULL);
5747 setkeybinding(MODKEY, XK_slash, KF_SEARCH_WORKSPACE,NULL);
5748 setkeybinding(MODKEY, XK_f, KF_SEARCH_WIN, NULL);
5750 setkeybinding(MODKEY_SHIFT, XK_d, KF_DUMPWINS, NULL);
5760 while (RB_EMPTY(&keys) == 0) {
5761 kp = RB_ROOT(&keys);
5767 setkeymapping(char *selector, char *value, int flags)
5769 char keymapping_file[PATH_MAX];
5771 /* suppress unused warnings since vars are needed */
5775 DNPRINTF(SWM_D_KEY, "setkeymapping: enter\n");
5776 if (value[0] == '~')
5777 snprintf(keymapping_file, sizeof keymapping_file, "%s/%s",
5778 pwd->pw_dir, &value[1]);
5780 strlcpy(keymapping_file, value, sizeof keymapping_file);
5782 /* load new key bindings; if it fails, revert to default bindings */
5783 if (conf_load(keymapping_file, SWM_CONF_KEYMAPPING)) {
5787 DNPRINTF(SWM_D_KEY, "setkeymapping: leave\n");
5792 updatenumlockmask(void)
5795 xcb_get_modifier_mapping_reply_t *modmap_r;
5796 xcb_keycode_t *modmap, kc, *keycode;
5800 modmap_r = xcb_get_modifier_mapping_reply(conn,
5801 xcb_get_modifier_mapping(conn),
5804 modmap = xcb_get_modifier_mapping_keycodes(modmap_r);
5805 for (i = 0; i < 8; i++) {
5806 for (j = 0; j < modmap_r->keycodes_per_modifier; j++) {
5807 kc = modmap[i * modmap_r->keycodes_per_modifier
5809 keycode = xcb_key_symbols_get_keycode(syms,
5812 numlockmask = (1 << i);
5818 DNPRINTF(SWM_D_MISC, "updatenumlockmask: %d\n", numlockmask);
5825 int num_screens, k, j;
5826 unsigned int modifiers[3];
5827 xcb_keycode_t *code;
5829 DNPRINTF(SWM_D_MISC, "grabkeys\n");
5830 updatenumlockmask();
5833 modifiers[1] = numlockmask;
5834 modifiers[2] = numlockmask | XCB_MOD_MASK_LOCK;
5836 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
5837 for (k = 0; k < num_screens; k++) {
5838 if (TAILQ_EMPTY(&screens[k].rl))
5840 xcb_ungrab_key(conn, XCB_GRAB_ANY, screens[k].root,
5842 RB_FOREACH(kp, key_tree, &keys) {
5843 if ((code = xcb_key_symbols_get_keycode(syms,
5845 for (j = 0; j < LENGTH(modifiers); j++)
5846 xcb_grab_key(conn, 1,
5848 kp->mod | modifiers[j],
5849 *code, XCB_GRAB_MODE_SYNC,
5850 XCB_GRAB_MODE_ASYNC);
5858 grabbuttons(struct ws_win *win)
5862 DNPRINTF(SWM_D_MOUSE, "grabbuttons: win 0x%x\n", win->id);
5864 for (i = 0; i < LENGTH(buttons); i++)
5865 if (buttons[i].action == client_click)
5866 xcb_grab_button(conn, 0, win->id, BUTTONMASK,
5867 XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC,
5868 XCB_WINDOW_NONE, XCB_CURSOR_NONE,
5869 buttons[i].button, buttons[i].mask);
5871 /* click to focus */
5872 xcb_grab_button(conn, 0, win->id, BUTTONMASK, XCB_GRAB_MODE_SYNC,
5873 XCB_GRAB_MODE_ASYNC, XCB_WINDOW_NONE, XCB_CURSOR_NONE,
5874 XCB_BUTTON_INDEX_1, XCB_BUTTON_MASK_ANY);
5877 const char *quirkname[] = {
5878 "NONE", /* config string for "no value" */
5887 /* SWM_Q_WS: retain '|' for back compat for now (2009-08-11) */
5888 #define SWM_Q_WS "\n|+ \t"
5890 parsequirks(char *qstr, unsigned long *quirk)
5900 while ((name = strsep(&cp, SWM_Q_WS)) != NULL) {
5902 cp += (long)strspn(cp, SWM_Q_WS);
5903 for (i = 0; i < LENGTH(quirkname); i++) {
5904 if (!strncasecmp(name, quirkname[i], SWM_QUIRK_LEN)) {
5905 DNPRINTF(SWM_D_QUIRK,
5906 "parsequirks: %s\n", name);
5911 *quirk |= 1 << (i-1);
5915 if (i >= LENGTH(quirkname)) {
5916 DNPRINTF(SWM_D_QUIRK,
5917 "parsequirks: invalid quirk [%s]\n", name);
5925 quirk_insert(const char *class, const char *name, unsigned long quirk)
5929 DNPRINTF(SWM_D_QUIRK, "quirk_insert: %s:%s [%lu]\n", class, name,
5932 if ((qp = malloc(sizeof *qp)) == NULL)
5933 err(1, "quirk_insert: malloc");
5934 if ((qp->class = strdup(class)) == NULL)
5935 err(1, "quirk_insert: strdup");
5936 if ((qp->name = strdup(name)) == NULL)
5937 err(1, "quirk_insert: strdup");
5940 TAILQ_INSERT_TAIL(&quirks, qp, entry);
5942 DNPRINTF(SWM_D_QUIRK, "quirk_insert: leave\n");
5946 quirk_remove(struct quirk *qp)
5948 DNPRINTF(SWM_D_QUIRK, "quirk_remove: %s:%s [%lu]\n", qp->class,
5949 qp->name, qp->quirk);
5951 TAILQ_REMOVE(&quirks, qp, entry);
5956 DNPRINTF(SWM_D_QUIRK, "quirk_remove: leave\n");
5960 quirk_replace(struct quirk *qp, const char *class, const char *name,
5961 unsigned long quirk)
5963 DNPRINTF(SWM_D_QUIRK, "quirk_replace: %s:%s [%lu]\n", qp->class,
5964 qp->name, qp->quirk);
5967 quirk_insert(class, name, quirk);
5969 DNPRINTF(SWM_D_QUIRK, "quirk_replace: leave\n");
5973 setquirk(const char *class, const char *name, unsigned long quirk)
5977 DNPRINTF(SWM_D_QUIRK, "setquirk: enter %s:%s [%lu]\n", class, name,
5980 TAILQ_FOREACH(qp, &quirks, entry) {
5981 if (!strcmp(qp->class, class) && !strcmp(qp->name, name)) {
5985 quirk_replace(qp, class, name, quirk);
5986 DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
5991 warnx("error: setquirk: cannot find class/name combination");
5995 quirk_insert(class, name, quirk);
5996 DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
6000 setconfquirk(char *selector, char *value, int flags)
6002 char *cp, *class, *name;
6006 /* suppress unused warning since var is needed */
6009 if (selector == NULL)
6011 if ((cp = strchr(selector, ':')) == NULL)
6016 if ((retval = parsequirks(value, &qrks)) == 0)
6017 setquirk(class, name, qrks);
6024 setquirk("MPlayer", "xv", SWM_Q_FLOAT | SWM_Q_FULLSCREEN | SWM_Q_FOCUSPREV);
6025 setquirk("OpenOffice.org 3.2", "VCLSalFrame", SWM_Q_FLOAT);
6026 setquirk("Firefox-bin", "firefox-bin", SWM_Q_TRANSSZ);
6027 setquirk("Firefox", "Dialog", SWM_Q_FLOAT);
6028 setquirk("Gimp", "gimp", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6029 setquirk("XTerm", "xterm", SWM_Q_XTERM_FONTADJ);
6030 setquirk("xine", "Xine Window", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6031 setquirk("Xitk", "Xitk Combo", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6032 setquirk("xine", "xine Panel", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6033 setquirk("Xitk", "Xine Window", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6034 setquirk("xine", "xine Video Fullscreen Window", SWM_Q_FULLSCREEN | SWM_Q_FLOAT);
6035 setquirk("pcb", "pcb", SWM_Q_FLOAT);
6036 setquirk("SDL_App", "SDL_App", SWM_Q_FLOAT | SWM_Q_FULLSCREEN);
6039 /* conf file stuff */
6040 #define SWM_CONF_FILE "spectrwm.conf"
6041 #define SWM_CONF_FILE_OLD "scrotwm.conf"
6045 SWM_S_BAR_AT_BOTTOM,
6046 SWM_S_BAR_BORDER_WIDTH,
6053 SWM_S_CLOCK_ENABLED,
6056 SWM_S_CYCLE_VISIBLE,
6058 SWM_S_DISABLE_BORDER,
6060 SWM_S_FOCUS_CLOSE_WRAP,
6061 SWM_S_FOCUS_DEFAULT,
6067 SWM_S_STACK_ENABLED,
6069 SWM_S_TITLE_CLASS_ENABLED,
6070 SWM_S_TITLE_NAME_ENABLED,
6071 SWM_S_URGENT_ENABLED,
6072 SWM_S_VERBOSE_LAYOUT,
6073 SWM_S_WINDOW_NAME_ENABLED,
6074 SWM_S_WORKSPACE_LIMIT
6078 setconfvalue(char *selector, char *value, int flags)
6083 /* suppress unused warning since var is needed */
6087 case SWM_S_BAR_ACTION:
6089 if ((bar_argv[0] = expand_tilde(value)) == NULL)
6090 err(1, "setconfvalue: bar_action");
6092 case SWM_S_BAR_AT_BOTTOM:
6093 bar_at_bottom = atoi(value);
6095 case SWM_S_BAR_BORDER_WIDTH:
6096 bar_border_width = atoi(value);
6097 if (bar_border_width < 0)
6098 bar_border_width = 0;
6100 case SWM_S_BAR_DELAY:
6101 bar_delay = atoi(value);
6103 case SWM_S_BAR_ENABLED:
6104 bar_enabled = atoi(value);
6106 case SWM_S_BAR_FONT:
6108 if (asprintf(&bar_fonts, "%s,%s", value, bar_fonts) == -1)
6109 err(1, "setconfvalue: asprintf: failed to allocate "
6110 "memory for bar_fonts.");
6113 /* If already in xft mode, then we are done. */
6114 if (!bar_font_legacy)
6117 /* If there are any non-XLFD entries, switch to Xft mode. */
6118 while ((b = strsep(&value, ",")) != NULL) {
6122 bar_font_legacy = 0;
6127 case SWM_S_BAR_FORMAT:
6129 if ((bar_format = strdup(value)) == NULL)
6130 err(1, "setconfvalue: bar_format");
6132 case SWM_S_BAR_JUSTIFY:
6133 if (!strcmp(value, "left"))
6134 bar_justify = SWM_BAR_JUSTIFY_LEFT;
6135 else if (!strcmp(value, "center"))
6136 bar_justify = SWM_BAR_JUSTIFY_CENTER;
6137 else if (!strcmp(value, "right"))
6138 bar_justify = SWM_BAR_JUSTIFY_RIGHT;
6140 errx(1, "invalid bar_justify");
6142 case SWM_S_BORDER_WIDTH:
6143 border_width = atoi(value);
6144 if (border_width < 0)
6147 case SWM_S_CLOCK_ENABLED:
6148 clock_enabled = atoi(value);
6150 case SWM_S_CLOCK_FORMAT:
6151 #ifndef SWM_DENY_CLOCK_FORMAT
6153 if ((clock_format = strdup(value)) == NULL)
6154 err(1, "setconfvalue: clock_format");
6157 case SWM_S_CYCLE_EMPTY:
6158 cycle_empty = atoi(value);
6160 case SWM_S_CYCLE_VISIBLE:
6161 cycle_visible = atoi(value);
6163 case SWM_S_DIALOG_RATIO:
6164 dialog_ratio = atof(value);
6165 if (dialog_ratio > 1.0 || dialog_ratio <= .3)
6168 case SWM_S_DISABLE_BORDER:
6169 disable_border = atoi(value);
6171 case SWM_S_FOCUS_CLOSE:
6172 if (!strcmp(value, "first"))
6173 focus_close = SWM_STACK_BOTTOM;
6174 else if (!strcmp(value, "last"))
6175 focus_close = SWM_STACK_TOP;
6176 else if (!strcmp(value, "next"))
6177 focus_close = SWM_STACK_ABOVE;
6178 else if (!strcmp(value, "previous"))
6179 focus_close = SWM_STACK_BELOW;
6181 errx(1, "focus_close");
6183 case SWM_S_FOCUS_CLOSE_WRAP:
6184 focus_close_wrap = atoi(value);
6186 case SWM_S_FOCUS_DEFAULT:
6187 if (!strcmp(value, "last"))
6188 focus_default = SWM_STACK_TOP;
6189 else if (!strcmp(value, "first"))
6190 focus_default = SWM_STACK_BOTTOM;
6192 errx(1, "focus_default");
6194 case SWM_S_FOCUS_MODE:
6195 if (!strcmp(value, "default"))
6196 focus_mode = SWM_FOCUS_DEFAULT;
6197 else if (!strcmp(value, "follow_cursor"))
6198 focus_mode = SWM_FOCUS_FOLLOW;
6199 else if (!strcmp(value, "manual"))
6200 focus_mode = SWM_FOCUS_MANUAL;
6202 errx(1, "focus_mode");
6204 case SWM_S_SPAWN_ORDER:
6205 if (!strcmp(value, "first"))
6206 spawn_position = SWM_STACK_BOTTOM;
6207 else if (!strcmp(value, "last"))
6208 spawn_position = SWM_STACK_TOP;
6209 else if (!strcmp(value, "next"))
6210 spawn_position = SWM_STACK_ABOVE;
6211 else if (!strcmp(value, "previous"))
6212 spawn_position = SWM_STACK_BELOW;
6214 errx(1, "spawn_position");
6216 case SWM_S_SPAWN_TERM:
6217 setconfspawn("term", value, 0);
6218 setconfspawn("spawn_term", value, 0);
6222 case SWM_S_SS_ENABLED:
6223 ss_enabled = atoi(value);
6225 case SWM_S_STACK_ENABLED:
6226 stack_enabled = atoi(value);
6228 case SWM_S_TERM_WIDTH:
6229 term_width = atoi(value);
6233 case SWM_S_TITLE_CLASS_ENABLED:
6234 title_class_enabled = atoi(value);
6236 case SWM_S_TITLE_NAME_ENABLED:
6237 title_name_enabled = atoi(value);
6239 case SWM_S_URGENT_ENABLED:
6240 urgent_enabled = atoi(value);
6242 case SWM_S_VERBOSE_LAYOUT:
6243 verbose_layout = atoi(value);
6244 for (i = 0; layouts[i].l_stack != NULL; i++) {
6246 layouts[i].l_string = fancy_stacker;
6248 layouts[i].l_string = plain_stacker;
6251 case SWM_S_WINDOW_NAME_ENABLED:
6252 window_name_enabled = atoi(value);
6254 case SWM_S_WORKSPACE_LIMIT:
6255 workspace_limit = atoi(value);
6256 if (workspace_limit > SWM_WS_MAX)
6257 workspace_limit = SWM_WS_MAX;
6258 else if (workspace_limit < 1)
6259 workspace_limit = 1;
6268 setconfmodkey(char *selector, char *value, int flags)
6270 /* suppress unused warnings since vars are needed */
6274 if (!strncasecmp(value, "Mod1", strlen("Mod1")))
6275 update_modkey(XCB_MOD_MASK_1);
6276 else if (!strncasecmp(value, "Mod2", strlen("Mod2")))
6277 update_modkey(XCB_MOD_MASK_2);
6278 else if (!strncasecmp(value, "Mod3", strlen("Mod3")))
6279 update_modkey(XCB_MOD_MASK_3);
6280 else if (!strncasecmp(value, "Mod4", strlen("Mod4")))
6281 update_modkey(XCB_MOD_MASK_4);
6288 setconfcolor(char *selector, char *value, int flags)
6290 setscreencolor(value, ((selector == NULL)?-1:atoi(selector)), flags);
6295 setconfregion(char *selector, char *value, int flags)
6297 /* suppress unused warnings since vars are needed */
6301 custom_region(value);
6306 setautorun(char *selector, char *value, int flags)
6316 /* suppress unused warnings since vars are needed */
6320 if (getenv("SWM_STARTED"))
6324 if (sscanf(value, "ws[%d]:%1023c", &ws_id, s) != 2)
6325 errx(1, "invalid autorun entry, should be 'ws[<idx>]:command'");
6327 if (ws_id < 0 || ws_id >= workspace_limit)
6328 errx(1, "autorun: invalid workspace %d", ws_id + 1);
6331 * This is a little intricate
6333 * If the pid already exists we simply reuse it because it means it was
6334 * used before AND not claimed by manage_window. We get away with
6335 * altering it in the parent after INSERT because this can not be a race
6338 while ((ap = strsep(&sp, " \t")) != NULL) {
6341 DNPRINTF(SWM_D_SPAWN, "setautorun: arg [%s]\n", ap);
6343 if ((a.argv = realloc(a.argv, argc * sizeof(char *))) == NULL)
6344 err(1, "setautorun: realloc");
6345 a.argv[argc - 1] = ap;
6348 if ((a.argv = realloc(a.argv, (argc + 1) * sizeof(char *))) == NULL)
6349 err(1, "setautorun: realloc");
6350 a.argv[argc] = NULL;
6352 if ((pid = fork()) == 0) {
6353 spawn(ws_id, &a, 1);
6362 p = calloc(1, sizeof *p);
6365 TAILQ_INSERT_TAIL(&pidlist, p, entry);
6375 setlayout(char *selector, char *value, int flags)
6377 int ws_id, i, x, mg, ma, si, ar, f = 0;
6378 int st = SWM_V_STACK, num_screens;
6380 struct workspace *ws;
6382 /* suppress unused warnings since vars are needed */
6386 if (getenv("SWM_STARTED"))
6390 if (sscanf(value, "ws[%d]:%d:%d:%d:%d:%1023c",
6391 &ws_id, &mg, &ma, &si, &ar, s) != 6)
6392 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
6393 "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
6396 if (ws_id < 0 || ws_id >= workspace_limit)
6397 errx(1, "layout: invalid workspace %d", ws_id + 1);
6399 if (!strcasecmp(s, "vertical"))
6401 else if (!strcasecmp(s, "vertical_flip")) {
6404 } else if (!strcasecmp(s, "horizontal"))
6406 else if (!strcasecmp(s, "horizontal_flip")) {
6409 } else if (!strcasecmp(s, "fullscreen"))
6412 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
6413 "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
6416 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
6417 for (i = 0; i < num_screens; i++) {
6418 ws = (struct workspace *)&screens[i].ws;
6419 ws[ws_id].cur_layout = &layouts[st];
6421 ws[ws_id].always_raise = ar;
6422 if (st == SWM_MAX_STACK)
6426 for (x = 0; x < abs(mg); x++) {
6427 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6428 mg >= 0 ? SWM_ARG_ID_MASTERGROW :
6429 SWM_ARG_ID_MASTERSHRINK);
6433 for (x = 0; x < abs(ma); x++) {
6434 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6435 ma >= 0 ? SWM_ARG_ID_MASTERADD :
6436 SWM_ARG_ID_MASTERDEL);
6440 for (x = 0; x < abs(si); x++) {
6441 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6442 si >= 0 ? SWM_ARG_ID_STACKINC :
6443 SWM_ARG_ID_STACKDEC);
6448 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6449 SWM_ARG_ID_FLIPLAYOUT);
6459 /* config options */
6460 struct config_option {
6462 int (*func)(char*, char*, int);
6465 struct config_option configopt[] = {
6466 { "bar_enabled", setconfvalue, SWM_S_BAR_ENABLED },
6467 { "bar_at_bottom", setconfvalue, SWM_S_BAR_AT_BOTTOM },
6468 { "bar_border", setconfcolor, SWM_S_COLOR_BAR_BORDER },
6469 { "bar_border_width", setconfvalue, SWM_S_BAR_BORDER_WIDTH },
6470 { "bar_color", setconfcolor, SWM_S_COLOR_BAR },
6471 { "bar_font_color", setconfcolor, SWM_S_COLOR_BAR_FONT },
6472 { "bar_font", setconfvalue, SWM_S_BAR_FONT },
6473 { "bar_action", setconfvalue, SWM_S_BAR_ACTION },
6474 { "bar_delay", setconfvalue, SWM_S_BAR_DELAY },
6475 { "bar_justify", setconfvalue, SWM_S_BAR_JUSTIFY },
6476 { "bar_format", setconfvalue, SWM_S_BAR_FORMAT },
6477 { "keyboard_mapping", setkeymapping, 0 },
6478 { "bind", setconfbinding, 0 },
6479 { "stack_enabled", setconfvalue, SWM_S_STACK_ENABLED },
6480 { "clock_enabled", setconfvalue, SWM_S_CLOCK_ENABLED },
6481 { "clock_format", setconfvalue, SWM_S_CLOCK_FORMAT },
6482 { "color_focus", setconfcolor, SWM_S_COLOR_FOCUS },
6483 { "color_unfocus", setconfcolor, SWM_S_COLOR_UNFOCUS },
6484 { "cycle_empty", setconfvalue, SWM_S_CYCLE_EMPTY },
6485 { "cycle_visible", setconfvalue, SWM_S_CYCLE_VISIBLE },
6486 { "workspace_limit", setconfvalue, SWM_S_WORKSPACE_LIMIT },
6487 { "dialog_ratio", setconfvalue, SWM_S_DIALOG_RATIO },
6488 { "verbose_layout", setconfvalue, SWM_S_VERBOSE_LAYOUT },
6489 { "modkey", setconfmodkey, 0 },
6490 { "program", setconfspawn, 0 },
6491 { "quirk", setconfquirk, 0 },
6492 { "region", setconfregion, 0 },
6493 { "spawn_term", setconfvalue, SWM_S_SPAWN_TERM },
6494 { "screenshot_enabled", setconfvalue, SWM_S_SS_ENABLED },
6495 { "screenshot_app", setconfvalue, SWM_S_SS_APP },
6496 { "window_name_enabled", setconfvalue, SWM_S_WINDOW_NAME_ENABLED },
6497 { "urgent_enabled", setconfvalue, SWM_S_URGENT_ENABLED },
6498 { "term_width", setconfvalue, SWM_S_TERM_WIDTH },
6499 { "title_class_enabled", setconfvalue, SWM_S_TITLE_CLASS_ENABLED },
6500 { "title_name_enabled", setconfvalue, SWM_S_TITLE_NAME_ENABLED },
6501 { "focus_mode", setconfvalue, SWM_S_FOCUS_MODE },
6502 { "focus_close", setconfvalue, SWM_S_FOCUS_CLOSE },
6503 { "focus_close_wrap", setconfvalue, SWM_S_FOCUS_CLOSE_WRAP },
6504 { "focus_default", setconfvalue, SWM_S_FOCUS_DEFAULT },
6505 { "spawn_position", setconfvalue, SWM_S_SPAWN_ORDER },
6506 { "disable_border", setconfvalue, SWM_S_DISABLE_BORDER },
6507 { "border_width", setconfvalue, SWM_S_BORDER_WIDTH },
6508 { "autorun", setautorun, 0 },
6509 { "layout", setlayout, 0 },
6514 conf_load(char *filename, int keymapping)
6517 char *line, *cp, *optsub, *optval;
6518 size_t linelen, lineno = 0;
6519 int wordlen, i, optidx;
6520 struct config_option *opt;
6522 DNPRINTF(SWM_D_CONF, "conf_load: begin\n");
6524 if (filename == NULL) {
6525 warnx("conf_load: no filename");
6528 if ((config = fopen(filename, "r")) == NULL) {
6529 warn("conf_load: fopen: %s", filename);
6533 while (!feof(config)) {
6534 if ((line = fparseln(config, &linelen, &lineno, NULL, 0))
6537 err(1, "%s", filename);
6542 cp += strspn(cp, " \t\n"); /* eat whitespace */
6543 if (cp[0] == '\0') {
6548 /* get config option */
6549 wordlen = strcspn(cp, "=[ \t\n");
6551 warnx("%s: line %zd: no option found",
6556 for (i = 0; i < LENGTH(configopt); i++) {
6557 opt = &configopt[i];
6558 if (!strncasecmp(cp, opt->optname, wordlen) &&
6559 (int)strlen(opt->optname) == wordlen) {
6565 warnx("%s: line %zd: unknown option %.*s",
6566 filename, lineno, wordlen, cp);
6569 if (keymapping && strcmp(opt->optname, "bind")) {
6570 warnx("%s: line %zd: invalid option %.*s",
6571 filename, lineno, wordlen, cp);
6575 cp += strspn(cp, " \t\n"); /* eat whitespace */
6576 /* get [selector] if any */
6580 wordlen = strcspn(cp, "]");
6583 warnx("%s: line %zd: syntax error",
6588 if (asprintf(&optsub, "%.*s", wordlen, cp) ==
6590 warnx("%s: line %zd: unable to allocate"
6591 "memory for selector", filename,
6597 cp += strspn(cp, "] \t\n"); /* eat trailing */
6599 cp += strspn(cp, "= \t\n"); /* eat trailing */
6601 optval = strdup(cp);
6602 /* call function to deal with it all */
6603 if (configopt[optidx].func(optsub, optval,
6604 configopt[optidx].funcflags) != 0)
6605 errx(1, "%s: line %zd: invalid data for %s",
6606 filename, lineno, configopt[optidx].optname);
6613 DNPRINTF(SWM_D_CONF, "conf_load: end\n");
6620 DNPRINTF(SWM_D_CONF, "conf_load: end with error.\n");
6626 set_child_transient(struct ws_win *win, xcb_window_t *trans)
6628 struct ws_win *parent, *w;
6629 struct swm_region *r;
6630 struct workspace *ws;
6631 xcb_icccm_wm_hints_t wmh;
6633 parent = find_window(win->transient);
6635 parent->focus_child = win;
6637 DNPRINTF(SWM_D_MISC, "set_child_transient: parent doesn't exist"
6638 " for 0x%x trans 0x%x\n", win->id, win->transient);
6640 r = root_to_region(win->wa->root);
6642 /* parent doen't exist in our window list */
6643 TAILQ_FOREACH(w, &ws->winlist, entry) {
6644 if (xcb_icccm_get_wm_hints_reply(conn,
6645 xcb_icccm_get_wm_hints(conn, w->id),
6647 warnx("can't get hints for 0x%x", w->id);
6651 if (win->hints.window_group != wmh.window_group)
6654 w->focus_child = win;
6655 win->transient = w->id;
6657 DNPRINTF(SWM_D_MISC, "set_child_transient: adjusting "
6658 "transient to 0x%x\n", win->transient);
6665 window_get_pid(xcb_window_t win)
6670 xcb_get_property_cookie_t pc;
6671 xcb_get_property_reply_t *pr;
6673 apid = get_atom_from_string("_NET_WM_PID");
6674 if (apid == XCB_ATOM_NONE)
6677 pc = xcb_get_property(conn, 0, win, apid, XCB_ATOM_CARDINAL, 0, 1);
6678 pr = xcb_get_property_reply(conn, pc, NULL);
6681 if (pr->type != XCB_ATOM_CARDINAL) {
6686 if (pr->type == apid && pr->format == 32)
6687 ret = *((pid_t *)xcb_get_property_value(pr));
6693 apid = get_atom_from_string("_SWM_PID");
6694 pc = xcb_get_property(conn, 0, win, apid, XCB_ATOM_STRING,
6696 pr = xcb_get_property_reply(conn, pc, NULL);
6699 if (pr->type != apid) {
6704 ret = (pid_t)strtonum(xcb_get_property_value(pr), 0, INT_MAX, &errstr);
6711 get_ws_idx(xcb_window_t id)
6717 xcb_get_property_reply_t *gpr;
6719 gpr = xcb_get_property_reply(conn,
6720 xcb_get_property(conn, 0, id, a_swm_ws,
6721 XCB_ATOM_STRING, 0, SWM_PROPLEN),
6726 proplen = xcb_get_property_value_length(gpr);
6728 prop = malloc(proplen + 1);
6731 xcb_get_property_value(gpr),
6733 prop[proplen] = '\0';
6740 DNPRINTF(SWM_D_PROP, "get_ws_idx: _SWM_WS: %s\n", prop);
6741 ws_idx = (int)strtonum(prop, 0, workspace_limit - 1, &errstr);
6743 DNPRINTF(SWM_D_PROP, "get_ws_idx: window: #%s: %s",
6753 manage_window(xcb_window_t id, uint16_t mapped)
6755 xcb_window_t trans = XCB_WINDOW_NONE;
6756 struct ws_win *win, *ww;
6757 int ws_idx, border_me = 0;
6758 char ws_idx_str[SWM_PROPLEN];
6759 struct swm_region *r;
6762 uint32_t event_mask, i;
6763 xcb_icccm_get_wm_protocols_reply_t wpr;
6765 if ((win = find_window(id)) != NULL) {
6766 DNPRINTF(SWM_D_MISC, "manage_window: win 0x%x already "
6767 "managed; skipping.)\n", id);
6768 return (win); /* Already managed. */
6771 /* See if window is on the unmanaged list. */
6772 if ((win = find_unmanaged_window(id)) != NULL) {
6773 DNPRINTF(SWM_D_MISC, "manage_window: win 0x%x found on "
6774 "unmanaged list.\n", id);
6775 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
6778 set_child_transient(win, &trans);
6782 DNPRINTF(SWM_D_MISC, "manage_window: win 0x%x is new.\n", id);
6785 /* Create and initialize ws_win object. */
6786 if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
6787 err(1, "manage_window: calloc: failed to allocate memory for "
6792 /* Get window geometry. */
6793 win->wa = xcb_get_geometry_reply(conn,
6794 xcb_get_geometry(conn, win->id),
6797 /* Figure out which region the window belongs to. */
6798 r = root_to_region(win->wa->root);
6800 /* Ignore window border if there is one. */
6801 WIDTH(win) = win->wa->width;
6802 HEIGHT(win) = win->wa->height;
6803 X(win) = win->wa->x + win->wa->border_width;
6804 Y(win) = win->wa->y + win->wa->border_width;
6806 win->mapped = mapped;
6807 win->floatmaxed = 0;
6808 win->ewmh_flags = 0;
6809 win->s = r->s; /* this never changes */
6811 store_float_geom(win, r);
6813 /* Get WM_SIZE_HINTS. */
6814 xcb_icccm_get_wm_normal_hints_reply(conn,
6815 xcb_icccm_get_wm_normal_hints(conn, win->id),
6819 xcb_icccm_get_wm_hints_reply(conn,
6820 xcb_icccm_get_wm_hints(conn, win->id),
6823 /* Get WM_TRANSIENT_FOR; see if window is a transient. */
6824 xcb_icccm_get_wm_transient_for_reply(conn,
6825 xcb_icccm_get_wm_transient_for(conn, win->id),
6828 win->transient = trans;
6829 set_child_transient(win, &win->transient);
6832 /* Get supported protocols. */
6833 if (xcb_icccm_get_wm_protocols_reply(conn,
6834 xcb_icccm_get_wm_protocols(conn, win->id, a_prot),
6836 for (i = 0; i < wpr.atoms_len; i++) {
6837 if (wpr.atoms[i] == a_takefocus)
6838 win->take_focus = 1;
6839 if (wpr.atoms[i] == a_delete)
6840 win->can_delete = 1;
6842 xcb_icccm_get_wm_protocols_reply_wipe(&wpr);
6845 win->iconic = get_swm_iconic(win);
6847 /* Figure out which workspace the window belongs to. */
6848 if ((p = find_pid(window_get_pid(win->id))) != NULL) {
6849 win->ws = &r->s->ws[p->ws];
6850 TAILQ_REMOVE(&pidlist, p, entry);
6853 } else if ((ws_idx = get_ws_idx(win->id)) != -1 &&
6854 win->transient == 0) {
6855 /* _SWM_WS is set; use that. */
6856 win->ws = &r->s->ws[ws_idx];
6857 } else if (trans && (ww = find_window(trans)) != NULL) {
6858 /* Launch transients in the same ws as parent. */
6865 /* Set the _SWM_WS atom so we can remember this after reincarnation. */
6866 if (snprintf(ws_idx_str, SWM_PROPLEN, "%d", win->ws->idx) <
6868 DNPRINTF(SWM_D_PROP, "manage_window: set _SWM_WS: %s\n",
6870 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
6871 a_swm_ws, XCB_ATOM_STRING, 8, strlen(ws_idx_str),
6876 ewmh_autoquirk(win);
6878 /* Determine initial quirks. */
6879 if (xcb_icccm_get_wm_class_reply(conn,
6880 xcb_icccm_get_wm_class(conn, win->id),
6882 DNPRINTF(SWM_D_CLASS, "manage_window: class: %s, name: %s\n",
6883 win->ch.class_name, win->ch.instance_name);
6885 /* java is retarded so treat it special */
6886 if (strstr(win->ch.instance_name, "sun-awt")) {
6887 DNPRINTF(SWM_D_CLASS, "manage_window: java window "
6893 TAILQ_FOREACH(qp, &quirks, entry) {
6894 if (!strcmp(win->ch.class_name, qp->class) &&
6895 !strcmp(win->ch.instance_name, qp->name)) {
6896 DNPRINTF(SWM_D_CLASS, "manage_window: on quirks"
6897 "list; mask: 0x%lx\n", qp->quirk);
6898 if (qp->quirk & SWM_Q_FLOAT) {
6902 win->quirks = qp->quirk;
6907 /* Alter window position if quirky */
6908 if (win->quirks & SWM_Q_ANYWHERE) {
6913 /* Reset font sizes (the bruteforce way; no default keybinding). */
6914 if (win->quirks & SWM_Q_XTERM_FONTADJ) {
6915 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
6916 fake_keypress(win, XK_KP_Subtract, XCB_MOD_MASK_SHIFT);
6917 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
6918 fake_keypress(win, XK_KP_Add, XCB_MOD_MASK_SHIFT);
6923 X(win) -= border_width;
6924 Y(win) -= border_width;
6927 /* Make sure window is positioned inside its region, if its active. */
6929 constrain_window(win, win->ws->r, 0);
6931 if (win->ws->r || border_me)
6934 /* Select which X events to monitor. */
6935 event_mask = XCB_EVENT_MASK_ENTER_WINDOW | XCB_EVENT_MASK_FOCUS_CHANGE |
6936 XCB_EVENT_MASK_PROPERTY_CHANGE | XCB_EVENT_MASK_STRUCTURE_NOTIFY;
6938 event_mask |= XCB_EVENT_MASK_LEAVE_WINDOW;
6941 xcb_change_window_attributes(conn, win->id, XCB_CW_EVENT_MASK,
6945 /* Figure out where to stack the window in the workspace. */
6946 if (trans && (ww = find_window(trans)))
6947 TAILQ_INSERT_AFTER(&win->ws->winlist, ww, win, entry);
6948 else if (win->ws->focus && spawn_position == SWM_STACK_ABOVE)
6949 TAILQ_INSERT_AFTER(&win->ws->winlist, win->ws->focus, win,
6951 else if (win->ws->focus && spawn_position == SWM_STACK_BELOW)
6952 TAILQ_INSERT_BEFORE(win->ws->focus, win, entry);
6953 else switch (spawn_position) {
6956 case SWM_STACK_ABOVE:
6957 TAILQ_INSERT_TAIL(&win->ws->winlist, win, entry);
6959 case SWM_STACK_BOTTOM:
6960 case SWM_STACK_BELOW:
6961 TAILQ_INSERT_HEAD(&win->ws->winlist, win, entry);
6964 /* Get initial _NET_WM_STATE */
6965 ewmh_get_win_state(win);
6966 /* Set initial _NET_WM_ALLOWED_ACTIONS */
6967 ewmh_update_actions(win);
6971 DNPRINTF(SWM_D_MISC, "manage_window: done. window: 0x%x, (x,y) w x h: "
6972 "(%d,%d) %d x %d, ws: %d, iconic: %s, transient: 0x%x\n", win->id,
6973 X(win), Y(win), WIDTH(win), HEIGHT(win), win->ws->idx,
6974 YESNO(win->iconic), win->transient);
6980 free_window(struct ws_win *win)
6982 DNPRINTF(SWM_D_MISC, "free_window: window: 0x%x\n", win->id);
6987 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
6992 xcb_icccm_get_wm_class_reply_wipe(&win->ch);
6997 memset(win, 0xff, sizeof *win); /* XXX kill later */
7000 DNPRINTF(SWM_D_MISC, "free_window: done.\n");
7004 unmanage_window(struct ws_win *win)
7006 struct ws_win *parent;
7011 DNPRINTF(SWM_D_MISC, "unmanage_window: window: 0x%x\n", win->id);
7013 if (win->transient) {
7014 parent = find_window(win->transient);
7016 parent->focus_child = NULL;
7019 focus_win(get_focus_prev(win));
7021 TAILQ_REMOVE(&win->ws->winlist, win, entry);
7022 TAILQ_INSERT_TAIL(&win->ws->unmanagedlist, win, entry);
7026 expose(xcb_expose_event_t *e)
7029 struct swm_region *r;
7031 DNPRINTF(SWM_D_EVENT, "expose: window: 0x%x\n", e->window);
7033 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7034 for (i = 0; i < num_screens; i++)
7035 TAILQ_FOREACH(r, &screens[i].rl, entry)
7036 if (e->window == WINID(r->bar))
7044 focusin(xcb_focus_in_event_t *e)
7046 DNPRINTF(SWM_D_EVENT, "focusin: window: 0x%x, mode: %s(%u), "
7047 "detail: %s(%u)\n", e->event, get_notify_mode_label(e->mode),
7048 e->mode, get_notify_detail_label(e->detail), e->detail);
7052 focusout(xcb_focus_out_event_t *e)
7054 DNPRINTF(SWM_D_EVENT, "focusout: window: 0x%x, mode: %s(%u), "
7055 "detail: %s(%u)\n", e->event, get_notify_mode_label(e->mode),
7056 e->mode, get_notify_detail_label(e->detail), e->detail);
7061 keypress(xcb_key_press_event_t *e)
7063 xcb_keysym_t keysym;
7066 keysym = xcb_key_press_lookup_keysym(syms, e, 0);
7068 DNPRINTF(SWM_D_EVENT, "keypress: %u %u\n", e->detail, keysym);
7070 if ((kp = key_lookup(CLEANMASK(e->state), keysym)) == NULL)
7073 last_event_time = e->time;
7075 if (kp->funcid == KF_SPAWN_CUSTOM)
7076 spawn_custom(root_to_region(e->root),
7077 &(keyfuncs[kp->funcid].args), kp->spawn_name);
7078 else if (keyfuncs[kp->funcid].func)
7079 keyfuncs[kp->funcid].func(root_to_region(e->root),
7080 &(keyfuncs[kp->funcid].args));
7084 buttonpress(xcb_button_press_event_t *e)
7090 DNPRINTF(SWM_D_EVENT, "buttonpress: window 0x%x, detail: %u\n",
7091 e->event, e->detail);
7093 if ((win = find_window(e->event)) == NULL)
7096 last_event_time = e->time;
7098 focus_win(get_focus_magic(win));
7100 for (i = 0; i < LENGTH(buttons); i++)
7101 if (client_click == buttons[i].action && buttons[i].func &&
7102 buttons[i].button == e->detail &&
7103 CLEANMASK(buttons[i].mask) == CLEANMASK(e->state)) {
7104 buttons[i].func(win, &buttons[i].args);
7109 DNPRINTF(SWM_D_EVENT, "buttonpress: passing to window.\n");
7110 xcb_allow_events(conn, XCB_ALLOW_REPLAY_POINTER, e->time);
7112 DNPRINTF(SWM_D_EVENT, "buttonpress: handled.\n");
7120 print_win_geom(xcb_window_t w)
7122 xcb_get_geometry_reply_t *wa;
7124 wa = xcb_get_geometry_reply(conn, xcb_get_geometry(conn, w), NULL);
7127 DNPRINTF(SWM_D_MISC, "print_win_geom: window not found: 0x%x\n",
7132 DNPRINTF(SWM_D_MISC, "print_win_geom: window: 0x%x, root: 0x%x, "
7133 "depth: %u, (x,y) w x h: (%d,%d) %d x %d, border: %d\n",
7134 w, wa->root, wa->depth, wa->x, wa->y, wa->width, wa->height,
7143 get_stack_mode_name(uint8_t mode)
7148 case XCB_STACK_MODE_ABOVE:
7151 case XCB_STACK_MODE_BELOW:
7154 case XCB_STACK_MODE_TOP_IF:
7157 case XCB_STACK_MODE_BOTTOM_IF:
7160 case XCB_STACK_MODE_OPPOSITE:
7172 configurerequest(xcb_configure_request_event_t *e)
7175 struct swm_region *r = NULL;
7178 uint32_t wc[7] = {0};
7180 if ((win = find_window(e->window)) == NULL)
7181 if ((win = find_unmanaged_window(e->window)) == NULL)
7185 if (swm_debug & SWM_D_EVENT) {
7186 print_win_geom(e->window);
7188 DNPRINTF(SWM_D_EVENT, "configurerequest: window: 0x%x, "
7189 "parent: 0x%x, new: %s, value_mask: %u { ", e->window,
7190 e->parent, YESNO(new), e->value_mask);
7191 if (e->value_mask & XCB_CONFIG_WINDOW_X)
7192 DPRINTF("X: %d ", e->x);
7193 if (e->value_mask & XCB_CONFIG_WINDOW_Y)
7194 DPRINTF("Y: %d ", e->y);
7195 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH)
7196 DPRINTF("W: %u ", e->width);
7197 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT)
7198 DPRINTF("H: %u ", e->height);
7199 if (e->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH)
7200 DPRINTF("Border: %u ", e->border_width);
7201 if (e->value_mask & XCB_CONFIG_WINDOW_SIBLING)
7202 DPRINTF("Sibling: 0x%x ", e->sibling);
7203 if (e->value_mask & XCB_CONFIG_WINDOW_STACK_MODE)
7204 DPRINTF("StackMode: %s(%u) ",
7205 get_stack_mode_name(e->stack_mode), e->stack_mode);
7211 if (e->value_mask & XCB_CONFIG_WINDOW_X) {
7212 mask |= XCB_CONFIG_WINDOW_X;
7215 if (e->value_mask & XCB_CONFIG_WINDOW_Y) {
7216 mask |= XCB_CONFIG_WINDOW_Y;
7219 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
7220 mask |= XCB_CONFIG_WINDOW_WIDTH;
7223 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
7224 mask |= XCB_CONFIG_WINDOW_HEIGHT;
7225 wc[i++] = e->height;
7227 if (e->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH) {
7228 mask |= XCB_CONFIG_WINDOW_BORDER_WIDTH;
7229 wc[i++] = e->border_width;
7231 if (e->value_mask & XCB_CONFIG_WINDOW_SIBLING) {
7232 mask |= XCB_CONFIG_WINDOW_SIBLING;
7233 wc[i++] = e->sibling;
7235 if (e->value_mask & XCB_CONFIG_WINDOW_STACK_MODE) {
7236 mask |= XCB_CONFIG_WINDOW_STACK_MODE;
7237 wc[i++] = e->stack_mode;
7241 xcb_configure_window(conn, e->window, mask, wc);
7242 } else if ((!win->manual || win->quirks & SWM_Q_ANYWHERE) &&
7243 !(win->ewmh_flags & EWMH_F_FULLSCREEN)) {
7246 else if (win->ws->old_r)
7249 /* windows are centered unless ANYWHERE quirk is set. */
7250 if (win->quirks & SWM_Q_ANYWHERE) {
7251 if (e->value_mask & XCB_CONFIG_WINDOW_X) {
7252 win->g_float.x = e->x;
7254 win->g_float.x -= X(r);
7257 if (e->value_mask & XCB_CONFIG_WINDOW_Y) {
7258 win->g_float.y = e->y;
7260 win->g_float.y -= Y(r);
7264 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH)
7265 win->g_float.w = e->width;
7267 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT)
7268 win->g_float.h = e->height;
7270 win->g_floatvalid = 1;
7272 if (win->floating && r) {
7273 WIDTH(win) = win->g_float.w;
7274 HEIGHT(win) = win->g_float.h;
7276 stack_floater(win, win->ws->r);
7290 configurenotify(xcb_configure_notify_event_t *e)
7294 DNPRINTF(SWM_D_EVENT, "configurenotify: window: 0x%x\n",
7297 win = find_window(e->window);
7299 xcb_icccm_get_wm_normal_hints_reply(conn,
7300 xcb_icccm_get_wm_normal_hints(conn, win->id),
7303 if (font_adjusted) {
7311 destroynotify(xcb_destroy_notify_event_t *e)
7315 DNPRINTF(SWM_D_EVENT, "destroynotify: window: 0x%x\n", e->window);
7317 if ((win = find_window(e->window)) == NULL) {
7318 if ((win = find_unmanaged_window(e->window)) == NULL)
7324 /* make sure we focus on something */
7327 unmanage_window(win);
7337 get_notify_detail_label(uint8_t detail)
7342 case XCB_NOTIFY_DETAIL_ANCESTOR:
7345 case XCB_NOTIFY_DETAIL_VIRTUAL:
7348 case XCB_NOTIFY_DETAIL_INFERIOR:
7351 case XCB_NOTIFY_DETAIL_NONLINEAR:
7352 label = "Nonlinear";
7354 case XCB_NOTIFY_DETAIL_NONLINEAR_VIRTUAL:
7355 label = "NonlinearVirtual";
7357 case XCB_NOTIFY_DETAIL_POINTER:
7360 case XCB_NOTIFY_DETAIL_POINTER_ROOT:
7361 label = "PointerRoot";
7363 case XCB_NOTIFY_DETAIL_NONE:
7374 get_notify_mode_label(uint8_t mode)
7379 case XCB_NOTIFY_MODE_NORMAL:
7382 case XCB_NOTIFY_MODE_GRAB:
7385 case XCB_NOTIFY_MODE_UNGRAB:
7388 case XCB_NOTIFY_MODE_WHILE_GRABBED:
7389 label = "WhileGrabbed";
7400 enternotify(xcb_enter_notify_event_t *e)
7404 DNPRINTF(SWM_D_FOCUS, "enternotify: time: %u, win (x,y): 0x%x "
7405 "(%d,%d), mode: %s(%d), detail: %s(%d), root (x,y): 0x%x (%d,%d), "
7406 "child: 0x%x, same_screen_focus: %s, state: %d\n",
7407 e->time, e->event, e->event_x, e->event_y,
7408 get_notify_mode_label(e->mode), e->mode,
7409 get_notify_detail_label(e->detail), e->detail,
7410 e->root, e->root_x, e->root_y, e->child,
7411 YESNO(e->same_screen_focus), e->state);
7413 if (focus_mode == SWM_FOCUS_MANUAL &&
7414 e->mode == XCB_NOTIFY_MODE_NORMAL) {
7415 DNPRINTF(SWM_D_EVENT, "enternotify: manual focus; ignoring.\n");
7419 if ((win = find_window(e->event)) == NULL) {
7420 DNPRINTF(SWM_D_EVENT, "enternotify: window is NULL; ignoring\n");
7424 last_event_time = e->time;
7426 focus_win(get_focus_magic(win));
7433 leavenotify(xcb_leave_notify_event_t *e)
7435 DNPRINTF(SWM_D_FOCUS, "leavenotify: time: %u, win (x,y): 0x%x "
7436 "(%d,%d), mode: %s(%d), detail: %s(%d), root (x,y): 0x%x (%d,%d), "
7437 "child: 0x%x, same_screen_focus: %s, state: %d\n",
7438 e->time, e->event, e->event_x, e->event_y,
7439 get_notify_mode_label(e->mode), e->mode,
7440 get_notify_detail_label(e->detail), e->detail,
7441 e->root, e->root_x, e->root_y, e->child,
7442 YESNO(e->same_screen_focus), e->state);
7446 /* lets us use one switch statement for arbitrary mode/detail combinations */
7447 #define MERGE_MEMBERS(a,b) (((a & 0xffff) << 16) | (b & 0xffff))
7450 mapnotify(xcb_map_notify_event_t *e)
7454 DNPRINTF(SWM_D_EVENT, "mapnotify: window: 0x%x\n", e->window);
7456 if ((win = find_window(e->window)) == NULL)
7457 win = manage_window(e->window, 1);
7460 set_win_state(win, XCB_ICCCM_WM_STATE_NORMAL);
7462 /* Focus on window if it is selected. */
7463 if (win->ws->focus == win)
7470 mappingnotify(xcb_mapping_notify_event_t *e)
7472 xcb_refresh_keyboard_mapping(syms, e);
7474 if (e->request == XCB_MAPPING_KEYBOARD)
7479 maprequest(xcb_map_request_event_t *e)
7482 xcb_get_window_attributes_reply_t *war;
7484 DNPRINTF(SWM_D_EVENT, "maprequest: win 0x%x\n",
7487 war = xcb_get_window_attributes_reply(conn,
7488 xcb_get_window_attributes(conn, e->window),
7491 DNPRINTF(SWM_D_EVENT, "maprequest: window lost.\n");
7495 if (war->override_redirect) {
7496 DNPRINTF(SWM_D_EVENT, "maprequest: override_redirect; "
7501 win = manage_window(e->window,
7502 (war->map_state == XCB_MAP_STATE_VIEWABLE));
7504 /* All windows need to be mapped if they are in the current workspace.*/
7508 /* The new window should get focus. */
7509 win->ws->focus = get_focus_magic(win);
7511 /* Ignore EnterNotify to handle the mapnotify without interference. */
7512 if (focus_mode == SWM_FOCUS_DEFAULT)
7513 event_drain(XCB_ENTER_NOTIFY);
7516 DNPRINTF(SWM_D_EVENT, "maprequest: done.\n");
7521 get_atom_name(xcb_atom_t atom)
7526 * This should be disabled during most debugging since
7527 * xcb_get_* causes an xcb_flush.
7530 xcb_get_atom_name_reply_t *r;
7532 r = xcb_get_atom_name_reply(conn,
7533 xcb_get_atom_name(conn, atom),
7536 len = xcb_get_atom_name_name_length(r);
7538 name = malloc(len + 1);
7540 memcpy(name, xcb_get_atom_name_name(r), len);
7554 propertynotify(xcb_property_notify_event_t *e)
7561 name = get_atom_name(e->atom);
7562 DNPRINTF(SWM_D_EVENT, "propertynotify: window: 0x%x, atom: %s(%u), "
7563 "time: %#x\n", e->window, name, e->atom, e->time);
7566 win = find_window(e->window);
7570 last_event_time = e->time;
7572 if (e->atom == a_swm_iconic) {
7573 if (e->state == XCB_PROPERTY_DELETE) {
7574 /* The window is no longer iconic, restack ws. */
7577 /* The window should get focus. */
7578 win->ws->focus = get_focus_magic(win);
7580 /* Flush EnterNotify for mapnotify, if needed. */
7583 } else if (e->state == XCB_PROPERTY_NEW_VALUE) {
7584 win->ws->focus = NULL;
7590 focus_win(get_focus_prev(win));
7595 } else if (e->atom == a_state && e->state == XCB_PROPERTY_NEW_VALUE) {
7596 /* Focus on window if it is selected. */
7597 if (win->ws->focus == win)
7602 case XCB_ATOM_WM_CLASS:
7603 case XCB_ATOM_WM_NAME:
7614 unmapnotify(xcb_unmap_notify_event_t *e)
7618 DNPRINTF(SWM_D_EVENT, "unmapnotify: window: 0x%x\n", e->window);
7620 /* determine if we need to help unmanage this window */
7621 win = find_window(e->window);
7625 if (getstate(e->window) == XCB_ICCCM_WM_STATE_NORMAL) {
7626 unmanage_window(win);
7634 visibilitynotify(xcb_visibility_notify_event_t *e)
7636 DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: 0x%x\n",
7642 clientmessage(xcb_client_message_event_t *e)
7645 xcb_map_request_event_t mre;
7649 name = get_atom_name(e->type);
7650 DNPRINTF(SWM_D_EVENT, "clientmessage: window: 0x%x, atom: %s(%u)\n",
7651 e->window, name, e->type);
7654 win = find_window(e->window);
7657 if (e->type == ewmh[_NET_ACTIVE_WINDOW].atom) {
7658 DNPRINTF(SWM_D_EVENT, "clientmessage: request focus on "
7659 "unmanaged window.\n");
7660 mre.window = e->window;
7666 if (e->type == ewmh[_NET_ACTIVE_WINDOW].atom) {
7667 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_ACTIVE_WINDOW\n");
7670 if (e->type == ewmh[_NET_CLOSE_WINDOW].atom) {
7671 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_CLOSE_WINDOW\n");
7672 if (win->can_delete)
7673 client_msg(win, a_delete, 0);
7675 xcb_kill_client(conn, win->id);
7677 if (e->type == ewmh[_NET_MOVERESIZE_WINDOW].atom) {
7678 DNPRINTF(SWM_D_EVENT,
7679 "clientmessage: _NET_MOVERESIZE_WINDOW\n");
7680 if (win->floating) {
7681 if (e->data.data32[0] & (1<<8)) /* x */
7682 X(win) = e->data.data32[1];
7683 if (e->data.data32[0] & (1<<9)) /* y */
7684 Y(win) = e->data.data32[2];
7685 if (e->data.data32[0] & (1<<10)) /* width */
7686 WIDTH(win) = e->data.data32[3];
7687 if (e->data.data32[0] & (1<<11)) /* height */
7688 HEIGHT(win) = e->data.data32[4];
7693 /* TODO: Change stack sizes */
7694 /* notify no change was made. */
7695 config_win(win, NULL);
7698 if (e->type == ewmh[_NET_WM_STATE].atom) {
7699 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_WM_STATE\n");
7700 ewmh_update_win_state(win, e->data.data32[1], e->data.data32[0]);
7701 if (e->data.data32[2])
7702 ewmh_update_win_state(win, e->data.data32[2],
7714 int errcode = xcb_connection_has_error(conn);
7715 #ifdef XCB_CONN_ERROR
7718 case XCB_CONN_ERROR:
7719 s = "Socket error, pipe error or other stream error.";
7721 case XCB_CONN_CLOSED_EXT_NOTSUPPORTED:
7722 s = "Extension not supported.";
7724 case XCB_CONN_CLOSED_MEM_INSUFFICIENT:
7725 s = "Insufficient memory.";
7727 case XCB_CONN_CLOSED_REQ_LEN_EXCEED:
7728 s = "Request length was exceeded.";
7730 case XCB_CONN_CLOSED_PARSE_ERR:
7731 s = "Error parsing display string.";
7734 s = "Unknown error.";
7737 errx(errcode, "X CONNECTION ERROR: %s", s);
7740 errx(errcode, "X CONNECTION ERROR");
7748 const uint32_t val = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT;
7750 xcb_void_cookie_t wac;
7751 xcb_generic_error_t *error;
7753 /* this causes an error if some other window manager is running */
7754 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7755 for (i = 0; i < num_screens; i++) {
7756 if ((sc = get_screen(i)) == NULL)
7757 errx(1, "ERROR: can't get screen %d.", i);
7758 DNPRINTF(SWM_D_INIT, "enable_wm: screen %d, root: 0x%x\n",
7760 wac = xcb_change_window_attributes_checked(conn, sc->root,
7761 XCB_CW_EVENT_MASK, &val);
7762 if ((error = xcb_request_check(conn, wac))) {
7763 DNPRINTF(SWM_D_INIT, "enable_wm: error_code: %u\n",
7774 new_region(struct swm_screen *s, int x, int y, int w, int h)
7776 struct swm_region *r, *n;
7777 struct workspace *ws = NULL;
7780 DNPRINTF(SWM_D_MISC, "new region: screen[%d]:%dx%d+%d+%d\n",
7781 s->idx, w, h, x, y);
7783 /* remove any conflicting regions */
7784 n = TAILQ_FIRST(&s->rl);
7787 n = TAILQ_NEXT(r, entry);
7788 if (X(r) < (x + w) &&
7789 (X(r) + WIDTH(r)) > x &&
7791 (Y(r) + HEIGHT(r)) > y) {
7792 if (r->ws->r != NULL)
7793 r->ws->old_r = r->ws->r;
7796 TAILQ_REMOVE(&s->rl, r, entry);
7797 TAILQ_INSERT_TAIL(&s->orl, r, entry);
7801 /* search old regions for one to reuse */
7803 /* size + location match */
7804 TAILQ_FOREACH(r, &s->orl, entry)
7805 if (X(r) == x && Y(r) == y &&
7806 HEIGHT(r) == h && WIDTH(r) == w)
7810 TAILQ_FOREACH(r, &s->orl, entry)
7811 if (HEIGHT(r) == h && WIDTH(r) == w)
7815 TAILQ_REMOVE(&s->orl, r, entry);
7816 /* try to use old region's workspace */
7817 if (r->ws->r == NULL)
7820 if ((r = calloc(1, sizeof(struct swm_region))) == NULL)
7821 err(1, "new_region: calloc: failed to allocate memory "
7824 /* if we don't have a workspace already, find one */
7826 for (i = 0; i < workspace_limit; i++)
7827 if (s->ws[i].r == NULL) {
7834 errx(1, "new_region: no free workspaces");
7845 TAILQ_INSERT_TAIL(&s->rl, r, entry);
7851 #ifdef SWM_XRR_HAS_CRTC
7854 #endif /* SWM_XRR_HAS_CRTC */
7855 struct swm_region *r;
7857 xcb_randr_get_screen_resources_current_cookie_t src;
7858 xcb_randr_get_screen_resources_current_reply_t *srr;
7859 xcb_randr_get_crtc_info_cookie_t cic;
7860 xcb_randr_get_crtc_info_reply_t *cir = NULL;
7861 xcb_randr_crtc_t *crtc;
7862 xcb_screen_t *screen;
7864 if ((screen = get_screen(i)) == NULL)
7865 errx(1, "ERROR: can't get screen %d.", i);
7867 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7868 if (i >= num_screens)
7869 errx(1, "scan_xrandr: invalid screen");
7871 /* remove any old regions */
7872 while ((r = TAILQ_FIRST(&screens[i].rl)) != NULL) {
7873 r->ws->old_r = r->ws->r = NULL;
7875 TAILQ_REMOVE(&screens[i].rl, r, entry);
7876 TAILQ_INSERT_TAIL(&screens[i].orl, r, entry);
7880 /* map virtual screens onto physical screens */
7881 #ifdef SWM_XRR_HAS_CRTC
7882 if (xrandr_support) {
7883 src = xcb_randr_get_screen_resources_current(conn,
7885 srr = xcb_randr_get_screen_resources_current_reply(conn, src,
7888 new_region(&screens[i], 0, 0,
7889 screen->width_in_pixels,
7890 screen->height_in_pixels);
7893 ncrtc = srr->num_crtcs;
7895 crtc = xcb_randr_get_screen_resources_current_crtcs(srr);
7896 for (c = 0; c < ncrtc; c++) {
7897 cic = xcb_randr_get_crtc_info(conn, crtc[c],
7899 cir = xcb_randr_get_crtc_info_reply(conn, cic, NULL);
7902 if (cir->num_outputs == 0) {
7908 new_region(&screens[i], 0, 0,
7909 screen->width_in_pixels,
7910 screen->height_in_pixels);
7912 new_region(&screens[i],
7913 cir->x, cir->y, cir->width, cir->height);
7918 #endif /* SWM_XRR_HAS_CRTC */
7920 new_region(&screens[i], 0, 0, screen->width_in_pixels,
7921 screen->height_in_pixels);
7926 screenchange(xcb_randr_screen_change_notify_event_t *e)
7928 struct swm_region *r;
7931 DNPRINTF(SWM_D_EVENT, "screenchange: root: 0x%x\n", e->root);
7933 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7934 /* silly event doesn't include the screen index */
7935 for (i = 0; i < num_screens; i++)
7936 if (screens[i].root == e->root)
7938 if (i >= num_screens)
7939 errx(1, "screenchange: screen not found");
7941 /* brute force for now, just re-enumerate the regions */
7945 print_win_geom(e->root);
7947 /* add bars to all regions */
7948 for (i = 0; i < num_screens; i++)
7949 TAILQ_FOREACH(r, &screens[i].rl, entry)
7957 xcb_window_t *wins = NULL;
7959 int i, j, num_screens;
7960 uint16_t state, manage, mapped;
7962 xcb_query_tree_cookie_t qtc;
7963 xcb_query_tree_reply_t *qtr;
7964 xcb_get_window_attributes_cookie_t c;
7965 xcb_get_window_attributes_reply_t *r;
7966 xcb_get_property_cookie_t pc;
7968 DNPRINTF(SWM_D_INIT, "grab_windows: begin\n");
7969 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7970 for (i = 0; i < num_screens; i++) {
7971 qtc = xcb_query_tree(conn, screens[i].root);
7972 qtr = xcb_query_tree_reply(conn, qtc, NULL);
7975 wins = xcb_query_tree_children(qtr);
7976 no = xcb_query_tree_children_length(qtr);
7977 /* attach windows to a region */
7978 /* normal windows */
7979 for (j = 0; j < no; j++) {
7980 c = xcb_get_window_attributes(conn, wins[j]);
7981 r = xcb_get_window_attributes_reply(conn, c, NULL);
7984 if (r->override_redirect) {
7989 pc = xcb_icccm_get_wm_transient_for(conn, wins[j]);
7990 if (xcb_icccm_get_wm_transient_for_reply(conn, pc,
7996 state = getstate(wins[j]);
7997 manage = state == XCB_ICCCM_WM_STATE_ICONIC;
7998 mapped = r->map_state != XCB_MAP_STATE_UNMAPPED;
7999 if (mapped || manage)
8000 manage_window(wins[j], mapped);
8003 /* transient windows */
8004 for (j = 0; j < no; j++) {
8005 c = xcb_get_window_attributes(conn, wins[j]);
8006 r = xcb_get_window_attributes_reply(conn, c, NULL);
8009 if (r->override_redirect) {
8015 state = getstate(wins[j]);
8016 manage = state == XCB_ICCCM_WM_STATE_ICONIC;
8017 mapped = r->map_state != XCB_MAP_STATE_UNMAPPED;
8018 pc = xcb_icccm_get_wm_transient_for(conn, wins[j]);
8019 if (xcb_icccm_get_wm_transient_for_reply(conn, pc,
8020 &wins[j], NULL) && manage)
8021 manage_window(wins[j], mapped);
8025 DNPRINTF(SWM_D_INIT, "grab_windows: done.\n");
8031 int i, j, k, num_screens;
8032 struct workspace *ws;
8033 uint32_t gcv[1], wa[1];
8034 const xcb_query_extension_reply_t *qep;
8035 xcb_screen_t *screen;
8036 xcb_cursor_t cursor;
8037 xcb_font_t cursor_font;
8038 xcb_randr_query_version_cookie_t c;
8039 xcb_randr_query_version_reply_t *r;
8041 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8042 if ((screens = calloc(num_screens,
8043 sizeof(struct swm_screen))) == NULL)
8044 err(1, "setup_screens: calloc: failed to allocate memory for "
8047 /* initial Xrandr setup */
8049 qep = xcb_get_extension_data(conn, &xcb_randr_id);
8051 c = xcb_randr_query_version(conn, 1, 1);
8052 r = xcb_randr_query_version_reply(conn, c, NULL);
8054 if (r->major_version >= 1) {
8056 xrandr_eventbase = qep->first_event;
8062 cursor_font = xcb_generate_id(conn);
8063 xcb_open_font(conn, cursor_font, strlen("cursor"), "cursor");
8065 cursor = xcb_generate_id(conn);
8066 xcb_create_glyph_cursor(conn, cursor, cursor_font, cursor_font,
8067 XC_left_ptr, XC_left_ptr + 1, 0, 0, 0, 0xffff, 0xffff, 0xffff);
8070 /* map physical screens */
8071 for (i = 0; i < num_screens; i++) {
8072 DNPRINTF(SWM_D_WS, "setup_screens: init screen: %d\n", i);
8074 TAILQ_INIT(&screens[i].rl);
8075 TAILQ_INIT(&screens[i].orl);
8076 if ((screen = get_screen(i)) == NULL)
8077 errx(1, "ERROR: can't get screen %d.", i);
8078 screens[i].root = screen->root;
8080 /* set default colors */
8081 setscreencolor("red", i + 1, SWM_S_COLOR_FOCUS);
8082 setscreencolor("rgb:88/88/88", i + 1, SWM_S_COLOR_UNFOCUS);
8083 setscreencolor("rgb:00/80/80", i + 1, SWM_S_COLOR_BAR_BORDER);
8084 setscreencolor("black", i + 1, SWM_S_COLOR_BAR);
8085 setscreencolor("rgb:a0/a0/a0", i + 1, SWM_S_COLOR_BAR_FONT);
8087 /* create graphics context on screen */
8088 screens[i].bar_gc = xcb_generate_id(conn);
8090 xcb_create_gc(conn, screens[i].bar_gc, screens[i].root,
8091 XCB_GC_GRAPHICS_EXPOSURES, gcv);
8093 /* set default cursor */
8094 xcb_change_window_attributes(conn, screens[i].root,
8097 /* init all workspaces */
8098 /* XXX these should be dynamically allocated too */
8099 for (j = 0; j < SWM_WS_MAX; j++) {
8100 ws = &screens[i].ws[j];
8106 TAILQ_INIT(&ws->winlist);
8107 TAILQ_INIT(&ws->unmanagedlist);
8109 for (k = 0; layouts[k].l_stack != NULL; k++)
8110 if (layouts[k].l_config != NULL)
8111 layouts[k].l_config(ws,
8112 SWM_ARG_ID_STACKINIT);
8113 ws->cur_layout = &layouts[0];
8114 ws->cur_layout->l_string(ws);
8120 xcb_randr_select_input(conn, screens[i].root,
8121 XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE);
8123 xcb_free_cursor(conn, cursor);
8124 xcb_close_font(conn, cursor_font);
8130 if ((bar_fonts = strdup(SWM_BAR_FONTS)) == NULL)
8131 err(1, "setup_globals: strdup: failed to allocate memory.");
8133 if ((clock_format = strdup("%a %b %d %R %Z %Y")) == NULL)
8134 err(1, "setup_globals: strdup: failed to allocate memory.");
8136 if ((syms = xcb_key_symbols_alloc(conn)) == NULL)
8137 errx(1, "unable to allocate key symbols");
8139 a_state = get_atom_from_string("WM_STATE");
8140 a_prot = get_atom_from_string("WM_PROTOCOLS");
8141 a_delete = get_atom_from_string("WM_DELETE_WINDOW");
8142 a_takefocus = get_atom_from_string("WM_TAKE_FOCUS");
8143 a_wmname = get_atom_from_string("WM_NAME");
8144 a_netwmname = get_atom_from_string("_NET_WM_NAME");
8145 a_utf8_string = get_atom_from_string("UTF8_STRING");
8146 a_string = get_atom_from_string("STRING");
8147 a_swm_iconic = get_atom_from_string("_SWM_ICONIC");
8148 a_swm_ws = get_atom_from_string("_SWM_WS");
8155 xcb_atom_t netwmcheck;
8156 xcb_window_t root, win;
8158 /* work around sun jdk bugs, code from wmname */
8159 netwmcheck = get_atom_from_string("_NET_SUPPORTING_WM_CHECK");
8161 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8162 for (i = 0; i < num_screens; i++) {
8163 root = screens[i].root;
8165 win = xcb_generate_id(conn);
8166 xcb_create_window(conn, XCB_COPY_FROM_PARENT, win, root,
8167 0, 0, 1, 1, 0, XCB_WINDOW_CLASS_INPUT_OUTPUT,
8168 XCB_COPY_FROM_PARENT, 0, NULL);
8170 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
8171 netwmcheck, XCB_ATOM_WINDOW, 32, 1, &win);
8172 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win,
8173 netwmcheck, XCB_ATOM_WINDOW, 32, 1, &win);
8174 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win,
8175 a_netwmname, a_utf8_string, 8, strlen("LG3D"), "LG3D");
8180 shutdown_cleanup(void)
8184 /* disable alarm because the following code may not be interrupted */
8186 if (signal(SIGALRM, SIG_IGN) == SIG_ERR)
8187 err(1, "can't disable alarm");
8195 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8196 for (i = 0; i < num_screens; ++i) {
8197 if (screens[i].bar_gc != 0)
8198 xcb_free_gc(conn, screens[i].bar_gc);
8199 if (!bar_font_legacy)
8200 XftColorFree(display, DefaultVisual(display, i),
8201 DefaultColormap(display, i), &bar_font_color);
8204 if (bar_font_legacy)
8205 XFreeFontSet(display, bar_fs);
8207 XftFontClose(display, bar_font);
8210 xcb_key_symbols_free(syms);
8212 xcb_disconnect(conn);
8216 event_error(xcb_generic_error_t *e)
8220 DNPRINTF(SWM_D_EVENT, "event_error: %s(%u) from %s(%u), sequence: %u, "
8221 "resource_id: %u, minor_code: %u\n",
8222 xcb_event_get_error_label(e->error_code), e->error_code,
8223 xcb_event_get_request_label(e->major_code), e->major_code,
8224 e->sequence, e->resource_id, e->minor_code);
8228 event_handle(xcb_generic_event_t *evt)
8230 uint8_t type = XCB_EVENT_RESPONSE_TYPE(evt);
8232 DNPRINTF(SWM_D_EVENT, "XCB Event: %s(%d), seq %u\n",
8233 xcb_event_get_label(XCB_EVENT_RESPONSE_TYPE(evt)),
8234 XCB_EVENT_RESPONSE_TYPE(evt), evt->sequence);
8237 #define EVENT(type, callback) case type: callback((void *)evt); return
8238 EVENT(0, event_error);
8239 EVENT(XCB_BUTTON_PRESS, buttonpress);
8240 /*EVENT(XCB_BUTTON_RELEASE, buttonpress);*/
8241 /*EVENT(XCB_CIRCULATE_NOTIFY, );*/
8242 /*EVENT(XCB_CIRCULATE_REQUEST, );*/
8243 EVENT(XCB_CLIENT_MESSAGE, clientmessage);
8244 /*EVENT(XCB_COLORMAP_NOTIFY, );*/
8245 EVENT(XCB_CONFIGURE_NOTIFY, configurenotify);
8246 EVENT(XCB_CONFIGURE_REQUEST, configurerequest);
8247 /*EVENT(XCB_CREATE_NOTIFY, );*/
8248 EVENT(XCB_DESTROY_NOTIFY, destroynotify);
8249 EVENT(XCB_ENTER_NOTIFY, enternotify);
8250 EVENT(XCB_EXPOSE, expose);
8252 EVENT(XCB_FOCUS_IN, focusin);
8253 EVENT(XCB_FOCUS_OUT, focusout);
8255 /*EVENT(XCB_GRAPHICS_EXPOSURE, );*/
8256 /*EVENT(XCB_GRAVITY_NOTIFY, );*/
8257 EVENT(XCB_KEY_PRESS, keypress);
8258 /*EVENT(XCB_KEY_RELEASE, keypress);*/
8259 /*EVENT(XCB_KEYMAP_NOTIFY, );*/
8261 EVENT(XCB_LEAVE_NOTIFY, leavenotify);
8263 EVENT(XCB_MAP_NOTIFY, mapnotify);
8264 EVENT(XCB_MAP_REQUEST, maprequest);
8265 EVENT(XCB_MAPPING_NOTIFY, mappingnotify);
8266 /*EVENT(XCB_MOTION_NOTIFY, );*/
8267 /*EVENT(XCB_NO_EXPOSURE, );*/
8268 EVENT(XCB_PROPERTY_NOTIFY, propertynotify);
8269 /*EVENT(XCB_REPARENT_NOTIFY, );*/
8270 /*EVENT(XCB_RESIZE_REQUEST, );*/
8271 /*EVENT(XCB_SELECTION_CLEAR, );*/
8272 /*EVENT(XCB_SELECTION_NOTIFY, );*/
8273 /*EVENT(XCB_SELECTION_REQUEST, );*/
8274 EVENT(XCB_UNMAP_NOTIFY, unmapnotify);
8275 /*EVENT(XCB_VISIBILITY_NOTIFY, visibilitynotify);*/
8278 if (type - xrandr_eventbase == XCB_RANDR_SCREEN_CHANGE_NOTIFY)
8279 screenchange((void *)evt);
8283 main(int argc, char *argv[])
8285 struct swm_region *r, *rr;
8286 struct ws_win *winfocus = NULL;
8287 char conf[PATH_MAX], *cfile = NULL;
8289 int xfd, i, num_screens;
8290 struct sigaction sact;
8291 xcb_generic_event_t *evt;
8295 /* suppress unused warning since var is needed */
8298 time_started = time(NULL);
8301 warnx("Welcome to spectrwm V%s Build: %s", SPECTRWM_VERSION, buildstr);
8302 if (!setlocale(LC_CTYPE, "") || !setlocale(LC_TIME, ""))
8303 warnx("no locale support");
8305 /* handle some signals */
8306 bzero(&sact, sizeof(sact));
8307 sigemptyset(&sact.sa_mask);
8309 sact.sa_handler = sighdlr;
8310 sigaction(SIGINT, &sact, NULL);
8311 sigaction(SIGQUIT, &sact, NULL);
8312 sigaction(SIGTERM, &sact, NULL);
8313 sigaction(SIGHUP, &sact, NULL);
8315 sact.sa_handler = sighdlr;
8316 sact.sa_flags = SA_NOCLDSTOP;
8317 sigaction(SIGCHLD, &sact, NULL);
8319 if (!(display = XOpenDisplay(0)))
8320 errx(1, "can not open display");
8322 conn = XGetXCBConnection(display);
8323 if (xcb_connection_has_error(conn))
8324 errx(1, "can not get XCB connection");
8326 XSetEventQueueOwner(display, XCBOwnsEventQueue);
8328 xcb_prefetch_extension_data(conn, &xcb_randr_id);
8329 xfd = xcb_get_file_descriptor(conn);
8331 /* look for local and global conf file */
8332 pwd = getpwuid(getuid());
8334 errx(1, "invalid user: %d", getuid());
8336 xcb_grab_server(conn);
8339 /* flush all events */
8340 while ((evt = xcb_poll_for_event(conn))) {
8341 if (XCB_EVENT_RESPONSE_TYPE(evt) == 0)
8346 if (enable_wm() != 0)
8347 errx(1, "another window manager is currently running");
8358 for (i = 0; ; i++) {
8363 snprintf(conf, sizeof conf, "%s/.%s",
8364 pwd->pw_dir, SWM_CONF_FILE);
8368 snprintf(conf, sizeof conf, "/etc/%s",
8373 snprintf(conf, sizeof conf, "%s/.%s",
8374 pwd->pw_dir, SWM_CONF_FILE_OLD);
8378 snprintf(conf, sizeof conf, "/etc/%s",
8385 if (strlen(conf) && stat(conf, &sb) != -1)
8386 if (S_ISREG(sb.st_mode)) {
8393 /* load conf (if any) */
8395 conf_load(cfile, SWM_CONF_DEFAULT);
8398 /* set some values to work around bad programs */
8400 /* grab existing windows (before we build the bars) */
8403 if (getenv("SWM_STARTED") == NULL)
8404 setenv("SWM_STARTED", "YES", 1);
8406 /* setup all bars */
8407 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8408 for (i = 0; i < num_screens; i++)
8409 TAILQ_FOREACH(r, &screens[i].rl, entry) {
8410 if (winfocus == NULL)
8411 winfocus = TAILQ_FIRST(&r->ws->winlist);
8418 xcb_ungrab_server(conn);
8422 while ((evt = xcb_poll_for_event(conn))) {
8429 /* if we are being restarted go focus on first window */
8431 rr = winfocus->ws->r;
8433 /* not a visible window */
8437 /* move pointer to first screen if multi screen */
8438 if (num_screens > 1 || outputs > 1)
8439 xcb_warp_pointer(conn, XCB_WINDOW_NONE,
8440 rr->s[0].root, 0, 0, 0, 0, X(rr),
8441 Y(rr) + (bar_enabled ? bar_height : 0));
8443 focus_win(get_region_focus(rr));
8453 if (select(xfd + 1, &rd, NULL, NULL, &tv) == -1)
8454 if (errno != EINTR) {
8455 DNPRINTF(SWM_D_MISC, "select failed");
8457 if (restart_wm == 1)
8458 restart(NULL, NULL);
8459 if (search_resp == 1)