From 676f5901b9fd1b018b9d0a8a764b6edf82e99a2e Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Sat, 20 Nov 2021 18:48:16 +0500 Subject: [PATCH] Remove file comment in "src/dwm.c" Because it no longer describes the code, that has changed a lot. --- src/dwm.c | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/dwm.c b/src/dwm.c index 94a6e2a..6fc215f 100644 --- a/src/dwm.c +++ b/src/dwm.c @@ -1,25 +1,3 @@ -/* See LICENSE file for copyright and license details. - * - * Polytree tiling window manager is designed like any other X client as well. - * It is driven through handling X events. In contrast to other X clients, a - * window manager selects for SubstructureRedirectMask on the root window, to - * receive events about window (dis-)appearance. Only one X connection at a time - * is allowed to select for this event mask. - * - * The event handlers of PolytreeWM are organized in an array which is accessed - * whenever a new event has been fetched. This allows event dispatching - * in O(1) time. - * - * Each child of the root window is called a client, except windows which have - * set the override_redirect flag. Clients are organized in a linked client - * list on each monitor, the focus history is remembered through a stack list - * on each monitor. Each client contains a bit array to indicate the tags of a - * client. - * - * Keys and tagging rules are organized as arrays and defined in config.h. - * - * To understand everything else, start reading main(). - */ #include #include #include