Codebase list i3-gaps / 4d9f8d7e-9a56-4503-9c27-c9b06431c005/main i3-nagbar / i3-nagbar.h
4d9f8d7e-9a56-4503-9c27-c9b06431c005/main

Tree @4d9f8d7e-9a56-4503-9c27-c9b06431c005/main (Download .tar.gz)

i3-nagbar.h @4d9f8d7e-9a56-4503-9c27-c9b06431c005/mainraw · history · blame

#pragma once

#include <config.h>

#include <err.h>

#define die(...) errx(EXIT_FAILURE, __VA_ARGS__);
#define FREE(pointer)   \
    do {                \
        free(pointer);  \
        pointer = NULL; \
    } while (0)

#define xmacro(atom) xcb_atom_t A_##atom;
#include "atoms.xmacro"
#undef xmacro

extern xcb_window_t root;