aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/workspace.h
blob: 30bbdaa8a22bd648f476507fd09fa42e11050396 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _SWAY_WORKSPACE_H
#define _SWAY_WORKSPACE_H

struct sway_container;

extern char *prev_workspace_name;

char *workspace_next_name(const char *output_name);
swayc_t *workspace_create(const char *name);
bool workspace_switch(swayc_t *workspace);

struct sway_container *workspace_by_number(const char* name);
swayc_t *workspace_by_name(const char*);

struct sway_container *workspace_output_next(struct sway_container *current);
struct sway_container *workspace_next(struct sway_container *current);
struct sway_container *workspace_output_prev(struct sway_container *current);
struct sway_container *workspace_prev(struct sway_container *current);

#endif