summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index b0dcf54..378f3b2 100644
--- a/config.def.h
+++ b/config.def.h
@@ -1,3 +1,4 @@
+#ifdef SURF
/* modifier 0 means no modifier */
static GdkColor progress = { 65535,65535,0,0 };
static GdkColor progress_trust = { 65535,0,65535,0 };
@@ -27,4 +28,32 @@ static Key keys[] = {
{ 0, GDK_Return, loaduri, {.v = NULL}, URLBAR },
{ 0, GDK_Return, hideurl, {0}, URLBAR },
};
+#else
+static const char font[] = "-*-proggytiny-*-*-*-*-*-*-*-*-*-*-*-*";
+static const char normbgcolor[] = "#202020";
+static const char normfgcolor[] = "#c0c0c0";
+static const char selbgcolor[] = "#884400";
+static const char selfgcolor[] = "#f0f0f0";
+
+static const char *surfexec[] = { "surf", "-x" };
+
+#define MODKEY ControlMask
+Key keys[] = { \
+ /* modifier key function argument */
+ { MODKEY|ShiftMask, XK_Return, newtab, { 0 } },
+ { MODKEY, XK_t, newtab, { 0 } },
+ { MODKEY|ShiftMask, XK_l, rotate, { .i = +1 } },
+ { MODKEY|ShiftMask, XK_h, rotate, { .i = -1 } },
+ { MODKEY|ShiftMask, XK_1, move, { .i = 1 } },
+ { MODKEY|ShiftMask, XK_2, move, { .i = 2 } },
+ { MODKEY|ShiftMask, XK_3, move, { .i = 3 } },
+ { MODKEY|ShiftMask, XK_4, move, { .i = 4 } },
+ { MODKEY|ShiftMask, XK_5, move, { .i = 5 } },
+ { MODKEY|ShiftMask, XK_6, move, { .i = 6 } },
+ { MODKEY|ShiftMask, XK_7, move, { .i = 7 } },
+ { MODKEY|ShiftMask, XK_8, move, { .i = 8 } },
+ { MODKEY|ShiftMask, XK_9, move, { .i = 9 } },
+ { MODKEY|ShiftMask, XK_0, move, { .i = 0 } },
+};
+#endif