Created
March 12, 2018 10:30
-
-
Save tskrynnyk/44ad317648f0a5ae84c6e58c8d0796c6 to your computer and use it in GitHub Desktop.
dwm no apps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/config.def.h 2018-03-12 11:09:14.909755475 +0100 | |
+++ b/config.def.h 2018-03-12 11:18:54.575508656 +0100 | |
@@ -25,20 +25,19 @@ | |
* WM_NAME(STRING) = title | |
*/ | |
/* class instance title tags mask isfloating monitor */ | |
- { "Gimp", NULL, NULL, 0, 1, -1 }, | |
- { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, | |
+ { NULL, NULL, NULL, 0, 0, -1 }, | |
}; | |
/* 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 = 1; /* 1 means respect size hints in tiled resizals */ | |
+static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */ | |
static const Layout layouts[] = { | |
/* symbol arrange function */ | |
- { "[]=", tile }, /* first entry is default */ | |
- { "><>", NULL }, /* no layout function means floating behavior */ | |
- { "[M]", monocle }, | |
+ { "T", tile }, /* first entry is default */ | |
+ { "F", NULL }, /* no layout function means floating behavior */ | |
+ { "M", monocle }, | |
}; | |
/* key definitions */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment