Start tracking changes
This commit is contained in:
24
i3bar/include/xcb.h
Normal file
24
i3bar/include/xcb.h
Normal file
@ -0,0 +1,24 @@
|
||||
#ifndef XCB_H_
|
||||
#define XCB_H_
|
||||
|
||||
#include <xcb/xcb.h>
|
||||
|
||||
#define NUM_ATOMS 3
|
||||
|
||||
enum {
|
||||
#define ATOM_DO(name) name,
|
||||
#include "xcb_atoms.def"
|
||||
};
|
||||
|
||||
xcb_atom_t atoms[NUM_ATOMS];
|
||||
|
||||
xcb_connection_t* xcb_connection;
|
||||
xcb_screen_t* xcb_screens;
|
||||
xcb_window_t xcb_root;
|
||||
|
||||
void init_xcb();
|
||||
void clean_xcb();
|
||||
void get_atoms();
|
||||
void create_windows();
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user