aboutsummaryrefslogtreecommitdiff
path: root/src/atom.c
diff options
context:
space:
mode:
authorallusive-dev <[email protected]>2023-09-19 17:46:20 +1000
committerallusive-dev <[email protected]>2023-09-19 17:46:20 +1000
commit5650d887357bf2a3fac8c5fd4f467bf8795b5fc4 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/atom.c
parentUpdate picom.sample.conf (diff)
downloadcompfy-5650d887357bf2a3fac8c5fd4f467bf8795b5fc4.tar.xz
compfy-5650d887357bf2a3fac8c5fd4f467bf8795b5fc4.zip
reset
Diffstat (limited to 'src/atom.c')
-rw-r--r--src/atom.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/atom.c b/src/atom.c
deleted file mode 100644
index 0272dc8..0000000
--- a/src/atom.c
+++ /dev/null
@@ -1,37 +0,0 @@
-#include <string.h>
-#include <xcb/xcb.h>
-
-#include "atom.h"
-#include "common.h"
-#include "utils.h"
-#include "log.h"
-
-static inline void *atom_getter(void *ud, const char *atom_name, int *err) {
- xcb_connection_t *c = ud;
- xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(
- c, xcb_intern_atom(c, 0, to_u16_checked(strlen(atom_name)), atom_name), NULL);
-
- xcb_atom_t atom = XCB_NONE;
- if (reply) {
- log_debug("Atom %s is %d", atom_name, reply->atom);
- atom = reply->atom;
- free(reply);
- } else {
- log_error("Failed to intern atoms");
- *err = 1;
- }
- return (void *)(intptr_t)atom;
-}
-
-/**
- * Create a new atom structure and fetch all predefined atoms
- */
-struct atom *init_atoms(xcb_connection_t *c) {
- auto atoms = ccalloc(1, struct atom);
- atoms->c = new_cache((void *)c, atom_getter, NULL);
-#define ATOM_GET(x) atoms->a##x = (xcb_atom_t)(intptr_t)cache_get(atoms->c, #x, NULL)
- LIST_APPLY(ATOM_GET, SEP_COLON, ATOM_LIST1);
- LIST_APPLY(ATOM_GET, SEP_COLON, ATOM_LIST2);
-#undef ATOM_GET
- return atoms;
-}