mirror of
https://github.com/swaywm/sway
synced 2024-11-18 23:14:03 +01:00
e505abfe75
This reverts commit e1d18e42a8f3a597b9bf5f1bb2ab6c346e4e7983. Fixes #180 cc @taiyu-len
20 lines
425 B
C
20 lines
425 B
C
#ifndef _SWAY_WORKSPACE_H
|
|
#define _SWAY_WORKSPACE_H
|
|
|
|
#include <wlc/wlc.h>
|
|
#include "list.h"
|
|
#include "layout.h"
|
|
|
|
extern char *prev_workspace_name;
|
|
|
|
char *workspace_next_name(void);
|
|
swayc_t *workspace_create(const char*);
|
|
swayc_t *workspace_by_name(const char*);
|
|
void workspace_switch(swayc_t*);
|
|
swayc_t *workspace_output_next();
|
|
swayc_t *workspace_next();
|
|
swayc_t *workspace_output_prev();
|
|
swayc_t *workspace_prev();
|
|
|
|
#endif
|