diff options
author | Jackson Taylor <jtaylor@classicalconversations.com> | 2024-03-01 16:33:15 -0500 |
---|---|---|
committer | Jackson Taylor <jtaylor@classicalconversations.com> | 2024-03-01 16:33:15 -0500 |
commit | a465ecf7d9a15431edfc48cf3613ab55f75f01a6 (patch) | |
tree | b63aa0fa719295e9966432167c5dabce2565c195 /config.h | |
parent | 83a85c986f732dbae0e4617a79bf80ae4e11cabb (diff) |
Add lockfullscreen backjackson_additions
Not sure why this was deleted in the first place
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -37,6 +37,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 */ @@ -60,7 +61,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", "#222222", "-nf", "#bbbbbb", "-sb", "#3d0373", "-sf", "#eeeeee", NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, NULL }; static const char *termcmd[] = { "st", NULL }; static const char *scratchpadcmd[] = {"st", "-t", scratchpadname, "-g", "120x34", NULL}; |