summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorMC <mc@hack.org>2010-06-18 15:56:56 +0200
committerMC <mc@hack.org>2010-06-18 15:56:56 +0200
commit1aa60fdcbc0c00728a74690fd8d207064edfd7c1 (patch)
tree19af58b2f0cbc9b3000fb594baa67962430d503f /config.h
downloadmcwm-1aa60fdcbc0c00728a74690fd8d207064edfd7c1.zip
Version 20100618.20100618
Diffstat (limited to 'config.h')
-rw-r--r--config.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..a97ea33
--- /dev/null
+++ b/config.h
@@ -0,0 +1,52 @@
+/* User configurable stuff. */
+
+/* Move this many pixels when moving or resizing with keyboard. */
+#define MOVE_STEP 32
+
+/*
+ * Use this modifier combined with other keys to control wm from
+ * keyboard. Default is Mod2, which on my keyboard is the Alt/Windows
+ * key.
+ */
+#define MODKEY XCB_MOD_MASK_2
+
+/* Extra modifier for resizing. Default is Shift. */
+#define SHIFTMOD XCB_MOD_MASK_SHIFT
+
+/*
+ * Modifier key to use with mouse buttons. Default Mod1, Meta on my
+ * keyboard.
+ */
+#define MOUSEMODKEY XCB_MOD_MASK_1
+
+/* Start this program when pressing MODKEY + USERKEY_TERMINAL. */
+#define TERMINAL "/usr/local/bin/urxvt"
+
+/* for VNC when running another wm simultaneously: XCB_BUTTON_MASK_ANY */
+
+/* Colour on border for focused windows. */
+
+/* FIXME: We blatantly ignore displays that doesn't handle direct pixel values. */
+
+#define FOCUSCOL 0xe5e5e5
+/* amber #define FOCUSCOL 0xff7f24 */
+
+/* Ditto for unfocused. */
+#define UNFOCUSCOL 0x666666
+
+/* Width of border window, in pixels. */
+#define BORDERWIDTH 1
+
+/*
+ * Keysym codes for window operations. Look in X11/keysymdefs.h for
+ * actual symbols.
+ */
+#define USERKEY_MOVE_LEFT XK_H
+#define USERKEY_MOVE_DOWN XK_J
+#define USERKEY_MOVE_UP XK_K
+#define USERKEY_MOVE_RIGHT XK_L
+#define USERKEY_MAXVERT XK_M
+#define USERKEY_RAISE XK_R
+#define USERKEY_TERMINAL XK_Return
+#define USERKEY_MAX XK_X
+#define USERKEY_CHANGE XK_Tab