mirror of
https://github.com/NickHu/sway
synced 2024-12-30 22:23:30 +01:00
d75c9f9722
Soon we will match views with more than just a pid.
12 lines
210 B
C
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
|