feat: 添加按键绑定功能

This commit is contained in:
2026-04-25 05:36:50 +08:00
parent a749fc3c6c
commit 7a86eb469b
14 changed files with 495 additions and 5 deletions

View File

@@ -1,7 +1,17 @@
#include "config/defaults.h"
#include <zdwm/action.h>
#include <zdwm/types.h>
#include "base/macros.h"
static constexpr char launcher[] =
"rofi -show combi -modes combi -combi-modes window,drun,run,ssh,windowcd";
static void spawn(const zdwm_action_ctx_t *ctx, const zdwm_action_arg_t *arg) {
ctx->spawn(arg->str);
}
bool config_defaults_build(
const zdwm_api_t *api,
zdwm_config_builder_t *builder,
@@ -46,5 +56,20 @@ bool config_defaults_build(
}
}
auto default_mode = api->add_mode(builder, "default");
zdwm_action_arg_t launcher_arg = {.str = launcher};
api->bind(builder, default_mode, "Mod4+r", spawn, &launcher_arg);
#define BIND(mode, key, fn, arg) \
api->bind(builder, mode, key, fn, &(zdwm_action_arg_t)arg)
BIND(default_mode, "Mod4+r", spawn, {.str = launcher});
#undef BIND
api->set_default_mode(builder, default_mode);
api->set_initial_mode(builder, default_mode);
return true;
}