1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-05-09 22:12:07 -04:00

fix(IPC): Remove recent duplicate IPC bindings

This commit is contained in:
purian23
2026-05-08 23:13:40 -04:00
parent 10872b5fc8
commit b75453c7d6
3 changed files with 11 additions and 28 deletions

View File

@@ -214,18 +214,4 @@ FloatingWindow {
targetWindow: root
}
IpcHandler {
target: "workspace-rename"
function open(): string {
const ws = NiriService.workspaces[NiriService.focusedWorkspaceId];
show(ws?.name || "");
return "WORKSPACE_RENAME_MODAL_OPENED";
}
function close(): string {
hide();
return "WORKSPACE_RENAME_MODAL_CLOSED";
}
}
}