blob: cb6286c79f84b0b9a7945923c184b265c1b69c95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|