sway-patched-tray-menu-github/include/sway/desktop/launcher.h
Ronan Pigott 9d78ede905 launcher: rename pid_workspace to launcher_ctx
Soon we will match views with more than just a pid.

(cherry picked from commit d75c9f9722)
2022-11-26 10:29:59 +01:00

12 lines
210 B
C

#ifndef _SWAY_LAUNCHER_H
#define _SWAY_LAUNCHER_H
#include <stdlib.h>
struct sway_workspace *workspace_for_pid(pid_t pid);
void launcher_ctx_create(pid_t pid);
void remove_workspace_pid(pid_t pid);
#endif