summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/config.h b/config.h
index 1e72722..db7ca5e 100644
--- a/config.h
+++ b/config.h
@@ -1,7 +1,7 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
-static const unsigned int borderpx = 1; /* border pixel of windows */
+static const unsigned int borderpx = 2; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
@@ -38,9 +38,9 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win
static const Layout layouts[] = {
/* symbol arrange function */
- { "[]=", tile }, /* first entry is default */
- { "><>", NULL }, /* no layout function means floating behavior */
- { "[M]", monocle },
+ { "◨", tile }, /* first entry is default */
+ { "🗗", NULL }, /* no layout function means floating behavior */
+ { "⛶", monocle },
};
/* key definitions */
@@ -62,6 +62,7 @@ static const char *browsercmd[] = { "qutebrowser", NULL };
static const char *passcmd[] = { "passmenu", "--type", NULL };
static const char *mailcmd[] = { "st", "neomutt", NULL };
static const char *musiccmd[] = { "st", "cmus", NULL };
+static const char *lockcmd[] = { "slock", NULL };
static Key keys[] = {
/* modifier key function argument */
@@ -71,6 +72,7 @@ static Key keys[] = {
{ MODKEY|ShiftMask, XK_p, spawn, {.v = passcmd } },
{ MODKEY|ShiftMask, XK_e, spawn, {.v = mailcmd } },
{ MODKEY|ShiftMask, XK_m, spawn, {.v = musiccmd } },
+ { MODKEY|ShiftMask, XK_l, spawn, {.v = lockcmd } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },