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