mirror of
https://github.com/vale981/bspwm
synced 2025-03-06 10:11:43 -05:00
12 lines
264 B
C
12 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);
|
||
|
}
|