]> git.lizzy.rs Git - bspwm.git/blob - bspwm.h
simple get message
[bspwm.git] / bspwm.h
1 #ifndef _MAIN_H
2 #define _MAIN_H
3
4 xcb_connection_t *dpy;
5 int default_screen, screen_width, screen_height;
6 xcb_screen_t *screen;
7 bool running;
8
9 static char *WM_ATOM_NAME[]   = { "WM_PROTOCOLS", "WM_DELETE_WINDOW" };
10 static char *NET_ATOM_NAME[]  = { "_NET_SUPPORTED", "_NET_WM_STATE_FULLSCREEN", "_NET_WM_STATE", "_NET_ACTIVE_WINDOW" };
11
12 enum { WM_PROTOCOLS, WM_DELETE_WINDOW, WM_COUNT };
13 enum { NET_SUPPORTED, NET_FULLSCREEN, NET_WM_STATE, NET_ACTIVE, NET_COUNT };
14
15 static xcb_atom_t wmatoms[WM_COUNT], netatoms[NET_COUNT];
16
17 int register_events(void);
18 xcb_screen_t *screen_of_display(xcb_connection_t *, int);
19 void sigchld(int);
20 void setup(int);
21
22 #endif