aboutsummaryrefslogtreecommitdiff
path: root/include/sway/desktop/launcher.h
diff options
context:
space:
mode:
authorRonan Pigott <ronan@rjp.ie>2022-11-16 15:50:34 -0700
committerSimon Ser <contact@emersion.fr>2022-11-26 09:48:58 +0100
commitd75c9f9722389d441fd24bd490c5cf12c4bef39a (patch)
tree29176c9dd4e467527dea86298995e33a0585bd14 /include/sway/desktop/launcher.h
parentbd66f4943da1c96edc3ba49573e27b42b688c543 (diff)
launcher: rename pid_workspace to launcher_ctx
Soon we will match views with more than just a pid.
Diffstat (limited to 'include/sway/desktop/launcher.h')
-rw-r--r--include/sway/desktop/launcher.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/desktop/launcher.h b/include/sway/desktop/launcher.h
index bbc4a2c3..7802bee1 100644
--- a/include/sway/desktop/launcher.h
+++ b/include/sway/desktop/launcher.h
@@ -3,10 +3,10 @@
#include <stdlib.h>
-struct sway_workspace *root_workspace_for_pid(pid_t pid);
+struct sway_workspace *workspace_for_pid(pid_t pid);
-void root_record_workspace_pid(pid_t pid);
+void launcher_ctx_create(pid_t pid);
-void root_remove_workspace_pid(pid_t pid);
+void remove_workspace_pid(pid_t pid);
#endif