summaryrefslogtreecommitdiff
path: root/src/sxwm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sxwm.h')
-rw-r--r--src/sxwm.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/sxwm.h b/src/sxwm.h
deleted file mode 100644
index f1ef7e5..0000000
--- a/src/sxwm.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef SXWM_H
-#define SXWM_H
-
-#include <stdio.h>
-#include <string.h>
-#include <err.h>
-#include <X11/Xlib.h>
-
-#include "user.config"
-
-#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 otherwm(void);
-static int otherwmerr(Display *dpy, XErrorEvent *ee);
-static void run(void);
-static void setup(void);
-static int xerr(Display *dpy, XErrorEvent *ee);
-
-static Display *dpy;
-static Window root;
-#endif