summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/config.def.h b/config.def.h
index 51bb13d..ceba71f 100644
--- a/config.def.h
+++ b/config.def.h
@@ -1,13 +1,13 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
-static const char font[] = "monospace:size=9";
-static const char* normbgcolor = "#222222";
-static const char* normfgcolor = "#cccccc";
-static const char* selbgcolor = "#555555";
-static const char* selfgcolor = "#ffffff";
-static const char* urgbgcolor = "#111111";
-static const char* urgfgcolor = "#cc0000";
+static const char font[] = "SauceCodePro Nerd Font:style=Regular:pixelsize=14";
+static const char* normbgcolor = "#1d2021";
+static const char* normfgcolor = "#ebdbb2";
+static const char* selbgcolor = "#b16286";
+static const char* selfgcolor = "#1d2021";
+static const char* urgbgcolor = "#cc241d";
+static const char* urgfgcolor = "#1d2021";
static const char before[] = "<";
static const char after[] = ">";
static const char titletrim[] = "...";
@@ -20,8 +20,8 @@ static Bool urgentswitch = False;
* then the current position is changed + newposition. If npisrelative
* is False, then newposition is an absolute position.
*/
-static int newposition = 0;
-static Bool npisrelative = False;
+static int newposition = 1;
+static Bool npisrelative = True;
#define SETPROP(p) { \
.v = (char *[]){ "/bin/sh", "-c", \
@@ -36,13 +36,13 @@ static Bool npisrelative = False;
#define MODKEY ControlMask
static const Key keys[] = {
/* modifier key function argument */
- { MODKEY|ShiftMask, XK_Return, focusonce, { 0 } },
- { MODKEY|ShiftMask, XK_Return, spawn, { 0 } },
+ { MODKEY, XK_Return, focusonce, { 0 } },
+ { MODKEY, XK_Return, spawn, { 0 } },
- { MODKEY|ShiftMask, XK_l, rotate, { .i = +1 } },
- { MODKEY|ShiftMask, XK_h, rotate, { .i = -1 } },
- { MODKEY|ShiftMask, XK_j, movetab, { .i = -1 } },
- { MODKEY|ShiftMask, XK_k, movetab, { .i = +1 } },
+ { MODKEY, XK_l, rotate, { .i = +1 } },
+ { MODKEY, XK_h, rotate, { .i = -1 } },
+ { MODKEY, XK_j, movetab, { .i = -1 } },
+ { MODKEY, XK_k, movetab, { .i = +1 } },
{ MODKEY, XK_Tab, rotate, { .i = 0 } },
{ MODKEY, XK_grave, spawn, SETPROP("_TABBED_SELECT_TAB") },