Compare commits
No commits in common. "27fe1f5c15ad494c48a3e4d43b0a41bb118c8720" and "0c555d95fc738abc4234558806f5ba2ff439c5bf" have entirely different histories.
27fe1f5c15
...
0c555d95fc
9
config.h
9
config.h
@ -1,7 +1,7 @@
|
||||
/* See LICENSE file for copyright and license details. */
|
||||
|
||||
/* appearance */
|
||||
static const unsigned int borderpx = 2; /* border pixel of windows */
|
||||
static const unsigned int borderpx = 1; /* 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 */
|
||||
@ -47,7 +47,7 @@ static const Rule rules[] = {
|
||||
/* layout(s) */
|
||||
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
||||
static const int nmaster = 1; /* number of clients in master area */
|
||||
static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */
|
||||
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
|
||||
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
|
||||
static const Layout layouts[] = {
|
||||
/* symbol arrange function */
|
||||
@ -117,7 +117,7 @@ static const Key keys[] = {
|
||||
{ MODKEY, XK_i, spawn, {.v = intip} },
|
||||
{ MODKEY, XK_BackSpace, view, {0} },
|
||||
{ MODKEY, XK_a, view, {.ui = ~0} }, // Select all tags. Cancel it with `MODKEY + [tag key]`.
|
||||
{ MODKEY|ControlMask|ShiftMask, XK_p, tag, {.ui = ~0} }, // Pin current window to all tags. Cancel it with `MODKEY + Shift + [tag key]`.
|
||||
{ MODKEY|Mod1Mask, XK_p, tag, {.ui = ~0} }, // Pin current window to all tags. Cancel it with `MODKEY + Shift + [tag key]`.
|
||||
|
||||
{ MODKEY, XK_Left, focusmon, {.i = -1} },
|
||||
{ MODKEY, XK_Right, focusmon, {.i = +1} },
|
||||
@ -125,11 +125,10 @@ static const Key keys[] = {
|
||||
{ MODKEY|ShiftMask, XK_Right, tagmon, {.i = +1} },
|
||||
|
||||
{ MODKEY, XK_p, spawn, {.v = roficmd} },
|
||||
{ MODKEY|Mod1Mask, XK_p, spawn, {.v = dmenucmd} },
|
||||
{ MODKEY|ShiftMask, XK_p, spawn, {.v = dmenucmd} },
|
||||
|
||||
{ MODKEY, XK_k, spawn, {.v = termcmd} },
|
||||
{ MODKEY, XK_e, spawn, {.v = filecmd} },
|
||||
|
||||
{ MODKEY, XK_n, spawn, {.v = nmtui} },
|
||||
{ MODKEY|ShiftMask, XK_n, spawn, {.v = nmcedit} },
|
||||
{ MODKEY, XK_h, spawn, {.v = top} },
|
||||
|
Loading…
Reference in New Issue
Block a user