You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
374 B
18 lines
374 B
#ifndef _SWAY_WORKSPACE_H
|
|
#define _SWAY_WORKSPACE_H
|
|
|
|
#include <wlc/wlc.h>
|
|
#include "list.h"
|
|
#include "layout.h"
|
|
|
|
char *workspace_next_name(void);
|
|
swayc_t *workspace_create(const char*);
|
|
swayc_t *workspace_by_name(const char*);
|
|
void workspace_switch(swayc_t*);
|
|
void workspace_output_next();
|
|
void workspace_next();
|
|
void workspace_output_prev();
|
|
void workspace_prev();
|
|
|
|
#endif
|