minimal size and formatting

This commit is contained in:
2026-01-07 20:35:41 +07:00
parent d5f736d9a6
commit b5d5793aa8
11 changed files with 63 additions and 71 deletions
+1 -7
View File
@@ -20,15 +20,9 @@ static bool keyboard_handle_keybind(struct absinthe_server *server, xkb_keysym_t
case XKB_KEY_Escape:
wl_display_terminate(server->display);
break;
case XKB_KEY_Q:
if (fork() == 0) {
execl("/bin/sh", "sh", "-c", "wofi --show drun", NULL);
}
break;
case XKB_KEY_Return:
if (fork() == 0) {
if (fork() == 0)
execl("/bin/sh", "sh", "-c", "alacritty", NULL);
}
break;
default:
return false;