remove monitor rule note for more indicating comment

This commit is contained in:
sewn 2024-08-30 20:01:17 +03:00
parent 8a414f7cae
commit 5e22c70943
No known key found for this signature in database
2 changed files with 2 additions and 3 deletions

View File

@ -43,13 +43,12 @@ static const Layout layouts[] = {
* WARNING: negative values other than (-1, -1) cause problems with Xwayland clients
* https://gitlab.freedesktop.org/xorg/xserver/-/issues/899
*/
/* NOTE: ALWAYS add a fallback rule, even if you are completely sure it won't be used */
static const MonitorRule monrules[] = {
/* name mfact nmaster scale layout rotate/reflect x y */
/* example of a HiDPI laptop monitor:
{ "eDP-1", 0.5f, 1, 2, &layouts[0], WL_OUTPUT_TRANSFORM_NORMAL, -1, -1 },
*/
/* defaults */
/* default monitor rule */
{ NULL, 0.55f, 1, 1, &layouts[0], WL_OUTPUT_TRANSFORM_NORMAL, -1, -1 },
};

2
dwl.c
View File

@ -465,7 +465,7 @@ applyrules(Client *c)
for (r = rules; r < END(rules); r++) {
if ((!r->title || strstr(title, r->title))
&& (!r->id || strstr(appid, r->id))) {
if (r->isfloating < -1)
if (r->isfloating > -1)
c->isfloating = r->isfloating;
newtags |= r->tags;
i = 0;