aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-05-22 21:33:03 +0530
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-05-22 21:33:03 +0530
commit96be12b185d8ecc294b02afa1622521968f37c16 (patch)
tree07ba098ac89dd12745e0118a244bf38efee9315b /config.def.h
parentd6b26ca37d23b233eb288205a2b6808741f4b00e (diff)
parent061e9fe9a7db396c0c4f3d996c3908fb43a6d50c (diff)
downloaddwm-96be12b185d8ecc294b02afa1622521968f37c16.tar.gz
dwm-96be12b185d8ecc294b02afa1622521968f37c16.tar.bz2
dwm-96be12b185d8ecc294b02afa1622521968f37c16.zip
Merge upstream release '6.5'
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index 2dbea52..ccd0df6 100644
--- a/config.def.h
+++ b/config.def.h
@@ -48,6 +48,7 @@ static const Rule rules[] = {
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 = 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 */
@@ -78,7 +79,7 @@ static const char *termcmd[] = { "st", NULL };
static const char scratchpadname[] = "scratchpad";
static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", NULL };
-static Key keys[] = {
+static const Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
@@ -124,7 +125,7 @@ static Key keys[] = {
/* button definitions */
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
-static Button buttons[] = {
+static const Button buttons[] = {
/* click event mask button function argument */
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },