mirror of
https://codeberg.org/dwl/dwl.git
synced 2025-02-20 23:57:27 -08:00
add option to enable numlock/capslock
This commit is contained in:
parent
feca3a9810
commit
77e34dc45a
2 changed files with 31 additions and 0 deletions
|
@ -57,6 +57,10 @@ static const struct xkb_rule_names xkb_rules = {
|
||||||
.options = NULL,
|
.options = NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* numlock and capslock */
|
||||||
|
static const int numlock = 1;
|
||||||
|
static const int capslock = 0;
|
||||||
|
|
||||||
static const int repeat_rate = 25;
|
static const int repeat_rate = 25;
|
||||||
static const int repeat_delay = 600;
|
static const int repeat_delay = 600;
|
||||||
|
|
||||||
|
|
27
dwl.c
27
dwl.c
|
@ -14,6 +14,7 @@
|
||||||
#include <wayland-server-core.h>
|
#include <wayland-server-core.h>
|
||||||
#include <wlr/backend.h>
|
#include <wlr/backend.h>
|
||||||
#include <wlr/backend/libinput.h>
|
#include <wlr/backend/libinput.h>
|
||||||
|
#include <wlr/interfaces/wlr_keyboard.h>
|
||||||
#include <wlr/render/allocator.h>
|
#include <wlr/render/allocator.h>
|
||||||
#include <wlr/render/wlr_renderer.h>
|
#include <wlr/render/wlr_renderer.h>
|
||||||
#include <wlr/types/wlr_compositor.h>
|
#include <wlr/types/wlr_compositor.h>
|
||||||
|
@ -851,6 +852,8 @@ createkeyboard(struct wlr_keyboard *keyboard)
|
||||||
{
|
{
|
||||||
struct xkb_context *context;
|
struct xkb_context *context;
|
||||||
struct xkb_keymap *keymap;
|
struct xkb_keymap *keymap;
|
||||||
|
uint32_t leds = 0;
|
||||||
|
xkb_mod_mask_t locked_mods = 0;
|
||||||
Keyboard *kb = keyboard->data = ecalloc(1, sizeof(*kb));
|
Keyboard *kb = keyboard->data = ecalloc(1, sizeof(*kb));
|
||||||
kb->wlr_keyboard = keyboard;
|
kb->wlr_keyboard = keyboard;
|
||||||
|
|
||||||
|
@ -874,6 +877,30 @@ createkeyboard(struct wlr_keyboard *keyboard)
|
||||||
kb->key_repeat_source = wl_event_loop_add_timer(
|
kb->key_repeat_source = wl_event_loop_add_timer(
|
||||||
wl_display_get_event_loop(dpy), keyrepeat, kb);
|
wl_display_get_event_loop(dpy), keyrepeat, kb);
|
||||||
|
|
||||||
|
if (numlock) {
|
||||||
|
xkb_mod_index_t mod_index = xkb_keymap_mod_get_index(keymap, XKB_MOD_NAME_NUM);
|
||||||
|
if (mod_index != XKB_MOD_INVALID) {
|
||||||
|
locked_mods |= (uint32_t)1 << mod_index;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (capslock) {
|
||||||
|
xkb_mod_index_t mod_index = xkb_keymap_mod_get_index(keymap, XKB_MOD_NAME_CAPS);
|
||||||
|
if (mod_index != XKB_MOD_INVALID) {
|
||||||
|
locked_mods |= (uint32_t)1 << mod_index;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (locked_mods) {
|
||||||
|
wlr_keyboard_notify_modifiers(keyboard, 0, 0, locked_mods, 0);
|
||||||
|
|
||||||
|
for (uint32_t i = 0; i < WLR_LED_COUNT; ++i)
|
||||||
|
if (xkb_state_led_index_is_active(keyboard->xkb_state,
|
||||||
|
keyboard->led_indexes[i]))
|
||||||
|
leds |= (1 << i);
|
||||||
|
wlr_keyboard_led_update(keyboard, leds);
|
||||||
|
}
|
||||||
|
|
||||||
/* And add the keyboard to our list of keyboards */
|
/* And add the keyboard to our list of keyboards */
|
||||||
wl_list_insert(&keyboards, &kb->link);
|
wl_list_insert(&keyboards, &kb->link);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue