summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorben <ben.nagy@arachnida.blog>2024-10-21 12:04:09 -0700
committerben <ben.nagy@arachnida.blog>2024-10-21 12:04:09 -0700
commitefebf35181554c40dc633e53329617c2b3990c83 (patch)
tree9077ece08a3a2271fcd3d0731fce9fbb8c42aab7 /src/config.h
parent639e8280cc4440f4162c3488f1b5c8ad36dec346 (diff)
get focused window and set window nameHEADmain
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/config.h b/src/config.h
index 5291767..d07c777 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,11 +1,16 @@
#ifndef CONFIG_H
#define CONFIG_H
-#define DEBUG 1
-
+#include <X11/cursorfont.h>
+// Debugging Mode
+#define DEBUG 1
+// Mouse buttons
#define M_BTN_1 1
#define M_BTN_2 3
+// Mouse Cursor
+#define M_CURSOR XC_cross
+
#endif