]> git.lizzy.rs Git - bspwm.git/blobdiff - bspwm.h
Properly close sockets
[bspwm.git] / bspwm.h
diff --git a/bspwm.h b/bspwm.h
index 047aba93bd5e2ebedd4d503db8ec7d9a542db1f9..35cc869738a982b6da9178720d098604a43e8200 100644 (file)
--- a/bspwm.h
+++ b/bspwm.h
@@ -1,18 +1,23 @@
-#ifndef _MAIN_H
-#define _MAIN_H
+#ifndef _BSPWM_H
+#define _BSPWM_H
 
 xcb_connection_t *dpy;
 int default_screen, screen_width, screen_height;
+unsigned int num_clients;
+unsigned int num_desktops;
 xcb_screen_t *screen;
+split_mode_t split_mode;
+direction_t split_dir;
+Desktop *desk;
+Desktop *last_desk;
+Desktop *desk_head;
+Desktop *desk_tail;
 bool running;
 
-static char *WM_ATOM_NAME[]   = { "WM_PROTOCOLS", "WM_DELETE_WINDOW" };
-static char *NET_ATOM_NAME[]  = { "_NET_SUPPORTED", "_NET_WM_STATE_FULLSCREEN", "_NET_WM_STATE", "_NET_ACTIVE_WINDOW" };
-
 enum { WM_PROTOCOLS, WM_DELETE_WINDOW, WM_COUNT };
 enum { NET_SUPPORTED, NET_FULLSCREEN, NET_WM_STATE, NET_ACTIVE, NET_COUNT };
 
-static xcb_atom_t wmatoms[WM_COUNT], netatoms[NET_COUNT];
+xcb_atom_t wmatoms[WM_COUNT], netatoms[NET_COUNT];
 
 int register_events(void);
 xcb_screen_t *screen_of_display(xcb_connection_t *, int);