ssd: add basic always-on-top button

This commit is contained in:
chocolatemintychip 2026-04-20 01:33:20 +02:00
parent 5f668a82ee
commit 838113cc44
9 changed files with 36 additions and 2 deletions

View file

@ -184,6 +184,8 @@ fill_section(const char *content, enum lab_node_type *buttons, int *count,
type = LAB_NODE_BUTTON_SHADE;
} else if (!strcmp(identifier, "desk")) {
type = LAB_NODE_BUTTON_OMNIPRESENT;
} else if (!strcmp(identifier, "ontop")) {
type = LAB_NODE_BUTTON_ONTOP;
} else {
wlr_log(WLR_ERROR, "invalid titleLayout identifier '%s'",
identifier);