1
1
Fork 0

keyd: ignore ydotool device

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2025-02-10 18:15:33 -06:00
parent 09efda36b2
commit 1466078ae6
Signed by: Myned
GPG key ID: C7224454F7881A34

View file

@ -19,7 +19,13 @@ in {
#!! Binds use qwerty without layouts #!! Binds use qwerty without layouts
# https://github.com/rvaiya/keyd/blob/master/docs/keyd.scdoc # https://github.com/rvaiya/keyd/blob/master/docs/keyd.scdoc
#?? keyd monitor #?? keyd monitor
keyboards.default.settings = { keyboards.default = {
ids = [
"*"
"-2333:6666:69419150" # ydotool
];
settings = {
#// global.disable_modifier_guard = 1; # Disable extraneous Control injection #// global.disable_modifier_guard = 1; # Disable extraneous Control injection
control.esc = "toggle(qwerty)"; # Control+Esc toggles qwerty control.esc = "toggle(qwerty)"; # Control+Esc toggles qwerty
@ -133,6 +139,7 @@ in {
}; };
}; };
}; };
};
environment.systemPackages = [pkgs.keyd]; environment.systemPackages = [pkgs.keyd];
}; };