summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
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}
+};
+