dwm.c
changeset 1242 91e8a7fb3b60
parent 1241 c93c552561b4
child 1243 7850bc57cbdc
equal deleted inserted replaced
1241:c93c552561b4 1242:91e8a7fb3b60
    14  * event dispatching in O(1) time.
    14  * event dispatching in O(1) time.
    15  *
    15  *
    16  * Each child of the root window is called a client, except windows which have
    16  * Each child of the root window is called a client, except windows which have
    17  * set the override_redirect flag.  Clients are organized in a global
    17  * set the override_redirect flag.  Clients are organized in a global
    18  * doubly-linked client list, the focus history is remembered through a global
    18  * doubly-linked client list, the focus history is remembered through a global
    19  * stack list. Each client contains an array of Bools of the same size as the
    19  * stack list. Each client contains a bit array to indicate the tags of a
    20  * global tags array to indicate the tags of a client.
    20  * client.
    21  *
    21  *
    22  * Keys and tagging rules are organized as arrays and defined in config.h.
    22  * Keys and tagging rules are organized as arrays and defined in config.h.
    23  *
    23  *
    24  * To understand everything else, start reading main().
    24  * To understand everything else, start reading main().
    25  */
    25  */