diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-01-26 12:40:04 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-01-26 12:40:04 +0100 |
| commit | 5f5a67f0ade91486b279628412fe2ad24b3326d9 (patch) | |
| tree | 73ea3c00d5ee32b31427f38ea70cf025ce37de11 | |
| parent | 164ac832a2cc488ed6cc4c23b3d89229b61114a2 (diff) | |
change shortcuts and theme
| -rw-r--r-- | config.def.h | 30 |
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") }, |