commit e224757ab24429056ab3b46105339c28a09d2d68
parent e00713aabb8c323fbf88496021c5bcd804cde672
Author: grouse <bdmfegys@duck.com>
Date: Sun, 29 Oct 2023 16:38:12 -0400
added some slightly helpful comments to config.def.h
Diffstat:
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -54,14 +54,14 @@ static const Rule rules[] = {
* WM_NAME(STRING) = title
*/
/* class instance title tags mask isfloating monitor */
- { "Gimp", NULL, NULL, 0, 1, -1 },
- { NULL, "spterm", NULL, SPTAG(0), 1, -1 },
- { NULL, "spfm", NULL, SPTAG(1), 1, -1 },
- { NULL, "upgrader", NULL, SPTAG(2), 1, -1 },
- { "widget", NULL, NULL, 0, 1, -1 },
- { "python3", NULL, NULL, 0, 1, -1 },
- { NULL, "Toolkit", NULL, 0, 1, -1 },
- { "steamwebhelper","steamwebhelper",NULL,0, 1, -1 },
+ { "Gimp", NULL, NULL, 0, 1, -1 }, // gimp menu floating rule
+ { NULL, "spterm", NULL, SPTAG(0), 1, -1 }, // scratchpad floating rule
+ { NULL, "spfm", NULL, SPTAG(1), 1, -1 }, // suckless file manager command
+ { NULL, "upgrader", NULL, SPTAG(2), 1, -1 }, // upgrade script command floating
+ { "widget", NULL, NULL, 0, 1, -1 }, // used sometimes, for using sww widgets
+ { "python3", NULL, NULL, 0, 1, -1 }, // i cant remember what this is tbh
+ { NULL, "Toolkit", NULL, 0, 1, -1 }, // firefox floating media player floating rule
+ { "steamwebhelper","steamwebhelper",NULL,0, 1, -1 }, // just to make the steam menus float
};