mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 18:01:37 -05:00
11 lines
264 B
C
11 lines
264 B
C
#include <xcb/xcb_ewmh.h>
|
|
#include "types.h"
|
|
#include "bspwm.h"
|
|
#include "ewmh.h"
|
|
|
|
void ewmh_init(void)
|
|
{
|
|
xcb_intern_atom_cookie_t *ewmh_cookies;
|
|
ewmh_cookies = xcb_ewmh_init_atoms(dpy, &ewmh);
|
|
xcb_ewmh_init_atoms_replies(&ewmh, ewmh_cookies, NULL);
|
|
}
|