Files
absinthe/include/keybinds.h
T

21 lines
662 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);
void cycle_focus(absn_server *server, const absn_arg *arg);
void toggle_fullscreen(absn_server *server, const absn_arg *arg);
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-11 12:46:20 +07:00
void focus_move_to_workspace(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