add "focused" field to Client struct

This commit is contained in:
Akos Horvath 2023-05-28 17:17:10 +02:00
parent 7734411ba6
commit 254b6d2ffb

View File

@ -41,6 +41,7 @@ struct Client {
Client *prev;
Client *next;
char *name;
bool focused;
bool has_border;
bool is_floating;
};