2 * vim:ts=4:sw=4:expandtab
4 * i3 - an improved dynamic tiling window manager
5 * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
7 * i3.h: global variables that are used all over i3.
13 #include <sys/resource.h>
15 #include <xcb/xcb_keysyms.h>
18 #include <X11/XKBlib.h>
20 #define SN_API_NOT_YET_FROZEN 1
21 #include <libsn/sn-launcher.h>
27 /** The original value of RLIMIT_CORE when i3 was started. We need to restore
28 * this before starting any other process, since we set RLIMIT_CORE to
29 * RLIM_INFINITY for i3 debugging versions. */
30 extern struct rlimit original_rlimit_core;
31 /** Whether this version of i3 is a debug build or a release build. */
32 extern bool debug_build;
33 /** The number of file descriptors passed via socket activation. */
34 extern int listen_fds;
35 extern xcb_connection_t *conn;
36 extern int conn_screen;
37 /** The last timestamp we got from X11 (timestamps are included in some events
38 * and are used for some things, like determining a unique ID in startup
40 extern xcb_timestamp_t last_timestamp;
41 extern SnDisplay *sndisplay;
42 extern xcb_key_symbols_t *keysyms;
43 extern char **start_argv;
44 extern Display *xlibdpy, *xkbdpy;
45 extern int xkb_current_group;
46 extern TAILQ_HEAD(bindings_head, Binding) * bindings;
47 extern TAILQ_HEAD(autostarts_head, Autostart) autostarts;
48 extern TAILQ_HEAD(autostarts_always_head, Autostart) autostarts_always;
49 extern TAILQ_HEAD(ws_assignments_head, Workspace_Assignment) ws_assignments;
50 extern TAILQ_HEAD(assignments_head, Assignment) assignments;
51 extern SLIST_HEAD(stack_wins_head, Stack_Window) stack_wins;
52 extern xcb_screen_t *root_screen;
54 /* Color depth, visual id and colormap to use when creating windows and
55 * pixmaps. Will use 32 bit depth and an appropriate visual, if available,
56 * otherwise the root window’s default (usually 24 bit TrueColor). */
57 extern uint8_t root_depth;
58 extern xcb_visualid_t visual_id;
59 extern xcb_colormap_t colormap;
61 extern bool xcursor_supported, xkb_supported;
62 extern xcb_window_t root;
63 extern struct ev_loop *main_loop;
64 extern bool only_check_config;