Add window menu

This commit is contained in:
Consolatis 2022-01-26 00:07:10 +01:00 committed by Johan Malm
parent 4bc8726abd
commit 759b26b5c1
12 changed files with 108 additions and 11 deletions

View file

@ -165,6 +165,7 @@ struct server {
struct theme *theme;
struct menu *rootmenu;
struct menu *windowmenu;
};
struct output {

View file

@ -31,6 +31,7 @@ struct menu {
};
void menu_init_rootmenu(struct server *server);
void menu_init_windowmenu(struct server *server);
void menu_finish(void);
/* menu_move - move to position (x, y) */