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.
17 lines
334 B
17 lines
334 B
#ifndef _SWAY_ARRANGE_H
|
|
#define _SWAY_ARRANGE_H
|
|
|
|
struct sway_container;
|
|
|
|
void arrange_container(struct sway_container *container);
|
|
|
|
void arrange_workspace(struct sway_container *workspace);
|
|
|
|
void arrange_output(struct sway_container *output);
|
|
|
|
void arrange_root(void);
|
|
|
|
void arrange_windows(struct sway_container *container);
|
|
|
|
#endif
|