summaryrefslogtreecommitdiffstats
path: root/sway/tree/root.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/root.c')
-rw-r--r--sway/tree/root.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/sway/tree/root.c b/sway/tree/root.c
index 0744192b..5dde9f22 100644
--- a/sway/tree/root.c
+++ b/sway/tree/root.c
@@ -390,3 +390,17 @@ void root_get_box(struct sway_root *root, struct wlr_box *box) {
390 box->width = root->width; 390 box->width = root->width;
391 box->height = root->height; 391 box->height = root->height;
392} 392}
393
394void root_rename_pid_workspaces(const char *old_name, const char *new_name) {
395 if (!pid_workspaces.prev && !pid_workspaces.next) {
396 wl_list_init(&pid_workspaces);
397 }
398
399 struct pid_workspace *pw = NULL;
400 wl_list_for_each(pw, &pid_workspaces, link) {
401 if (strcmp(pw->workspace, old_name) == 0) {
402 free(pw->workspace);
403 pw->workspace = strdup(new_name);
404 }
405 }
406}