mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-18 22:26:12 +01:00
16 lines
238 B
C
16 lines
238 B
C
#ifndef _SWAY_MOVEMENT_H
|
|
#define _SWAY_MOVEMENT_H
|
|
|
|
#include <wlc/wlc.h>
|
|
#include "list.h"
|
|
|
|
enum movement_direction{
|
|
MOVE_LEFT,
|
|
MOVE_RIGHT,
|
|
MOVE_UP,
|
|
MOVE_DOWN
|
|
};
|
|
|
|
void move_focus(enum movement_direction direction);
|
|
|
|
#endif
|