summaryrefslogtreecommitdiff
path: root/src/sxwm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sxwm.h')
-rw-r--r--src/sxwm.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/sxwm.h b/src/sxwm.h
new file mode 100644
index 0000000..cb6286c
--- /dev/null
+++ b/src/sxwm.h
@@ -0,0 +1,21 @@
+#ifndef SXWM_H
+#define SXWM_H
+
+#include <string.h>
+#include <err.h>
+#include <X11/Xlib.h>
+
+#define SXWM_VERSION "sxwm ver. 0.1.0"
+#define SXWM_AUTHOR "(C) Abhinav Prasai 2025"
+#define SXWM_LICINFO "See LICENSE for more info"
+
+#define ALT Mod1Mask
+#define SUPER Mod4Mask
+#define SHIFT ShiftMask
+
+static void run(void);
+static void setup(void);
+
+static Display *dpy;
+static Window root;
+#endif