Files
absinthe/include/keybinds.h
T

27 lines
847 B
C
Raw Normal View History

2026-05-09 18:38:24 +07:00
#ifndef __KEYBINDS_CALLBACKS_H
#define __KEYBINDS_CALLBACKS_H
#include "types.h"
void run(absn_server *server, const absn_arg *arg);
void kill_focus(absn_server *server, const absn_arg *arg);
2026-05-13 08:57:19 +07:00
2026-05-09 18:38:24 +07:00
void cycle_focus(absn_server *server, const absn_arg *arg);
2026-05-13 08:57:19 +07:00
void swap_focus(absn_server *server, const absn_arg *arg);
2026-05-09 18:38:24 +07:00
void toggle_fullscreen(absn_server *server, const absn_arg *arg);
2026-05-16 21:59:36 +07:00
void toggle_floating(absn_server *server, const absn_arg *arg);
2026-05-09 18:38:24 +07:00
void increase_master_width(absn_server *server, const absn_arg *arg);
void increase_master_count(absn_server *server, const absn_arg *arg);
2026-05-10 23:02:22 +07:00
void switch_workspace(absn_server *server, const absn_arg *arg);
2026-05-12 12:55:22 +07:00
void move_focus_to_workspace(absn_server *server, const absn_arg *arg);
void set_layout(absn_server *server, const absn_arg *arg);
2026-05-10 23:02:22 +07:00
2026-05-09 18:38:24 +07:00
void quit(absn_server *server, const absn_arg *arg);
#endif