This commit is contained in:
2026-05-13 08:57:19 +07:00
parent 2653237be8
commit 1e32f83883
4 changed files with 41 additions and 5 deletions
+3
View File
@@ -49,6 +49,9 @@ static const absn_keybind keybinds[] = {
{ ALT, XKB_KEY_j, cycle_focus, { .i = +1 } },
{ ALT, XKB_KEY_k, cycle_focus, { .i = -1 } },
{ ALT | SHIFT, XKB_KEY_j, swap_focus, { .i = +1 } },
{ ALT | SHIFT, XKB_KEY_k, swap_focus, { .i = -1 } },
{ ALT, XKB_KEY_f, toggle_fullscreen, { 0 } },
{ ALT, XKB_KEY_h, increase_master_count, { .i = +1 } },
+3
View File
@@ -6,7 +6,10 @@
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 swap_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);