diff options
| author | NPScript <nathan@reinerweb.ch> | 2022-05-01 15:50:06 +0200 |
|---|---|---|
| committer | NPScript <nathan@reinerweb.ch> | 2022-05-01 15:50:06 +0200 |
| commit | 3762ba5cb6db5184938d08dbf90e079916076f31 (patch) | |
| tree | 3075357ea38415c2c4b18fabe0a4a5f4af0a58e3 /config.h | |
| parent | c35181a9db175e5b45f77e5423e2d1dffe0fafcf (diff) | |
add icons
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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 } }, |