mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-24 07:58:09 +01:00
25f559dcde
This removes the pid_workspace bits from tree/root before it gets
too interesting.
No functional change.
(cherry picked from commit eb5021ef99
)
14 lines
304 B
C
14 lines
304 B
C
#ifndef _SWAY_LAUNCHER_H
|
|
#define _SWAY_LAUNCHER_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
struct sway_workspace *root_workspace_for_pid(pid_t pid);
|
|
|
|
void root_record_workspace_pid(pid_t pid);
|
|
|
|
void root_remove_workspace_pid(pid_t pid);
|
|
|
|
void root_rename_pid_workspaces(const char *old_name, const char *new_name);
|
|
|
|
#endif
|