sway-patched-tray-menu/include/sway/desktop/launcher.h
Ronan Pigott d75c9f9722 launcher: rename pid_workspace to launcher_ctx
Soon we will match views with more than just a pid.
2022-11-26 09:48:58 +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