summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorBossCode45 <human.cyborg42@gmail.com>2022-08-19 22:33:25 +1200
committerBossCode45 <human.cyborg42@gmail.com>2022-08-19 22:33:25 +1200
commit4895e9d1fa3fd4c51dfdf3e3fdac13a13cf10bd7 (patch)
tree1322197292b9aac0ecc292e8321ddc839a5e0122 /config.h
parentc15c2df9b2512c7cfeb0eaa8301b12b96cb8c590 (diff)
downloadYATwm-4895e9d1fa3fd4c51dfdf3e3fdac13a13cf10bd7.tar.gz
YATwm-4895e9d1fa3fd4c51dfdf3e3fdac13a13cf10bd7.zip
Initial commit
Diffstat (limited to 'config.h')
-rw-r--r--config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..18d0a93
--- /dev/null
+++ b/config.h
@@ -0,0 +1,15 @@
+#include <X11/keysym.h>
+
+struct Key
+{
+ KeySym keysym;
+ unsigned int modifiers;
+};
+
+Key keyBinds[] = {
+ {XK_E, Mod1Mask},
+ {XK_Return, Mod1Mask},
+ {XK_D, Mod1Mask},
+ {XK_T, Mod1Mask}
+};
+