~kris/suckless

dwmblocks

ref: 88db4b33911cdadc8ff09b3f9ac5e60e7660081e dwmblocks/include/x11.h -rw-r--r-- 318 bytes
88db4b33 — Kris Yotam Update FUNDING.yml to krisyotam as sole maintainer 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef X11_H
#define X11_H

#include <xcb/xcb.h>

typedef xcb_connection_t x11_connection;

x11_connection* x11_connection_open(void);
void x11_connection_close(x11_connection* const connection);
int x11_set_root_name(x11_connection* const connection,
                      const char* const name);

#endif  // X11_H