bspwm/bspwm.h
2012-09-12 14:56:51 +02:00

26 lines
532 B
C

#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;
xcb_rectangle_t root_rect;
split_mode_t split_mode;
direction_t split_dir;
desktop_t *desk;
desktop_t *last_desk;
desktop_t *desk_head;
desktop_t *desk_tail;
rule_t *rule_head;
bool running;
/* enum { WM_PROTOCOLS, WM_DELETE_WINDOW, WM_COUNT }; */
int register_events(void);
/* void handle_zombie(int); */
void setup(int);
void quit(void);
#endif