bspwm/bspwm.h
2012-09-16 14:16:58 +02:00

25 lines
493 B
C

#ifndef _BSPWM_H
#define _BSPWM_H
xcb_connection_t *dpy;
int default_screen, screen_width, screen_height;
unsigned int num_clients;
uint32_t 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;
xcb_atom_t WM_DELETE_WINDOW;
int register_events(void);
void handle_zombie(int);
void setup(int);
void quit(void);
#endif