Hello all!
Bit of an odd request, but hear me out. I am attempting to "emulate" a numpad on a keyboard that does not have one. Effectively, I want to be able to map a box of nine keys on my keyboard to act as a number pad when a modifier is held down.
For example, using control + shift as a modified I would map the "box" of keys around the J key to act as a numberpad: yui -> 789, jkl -> 456, nm, -> 123. I was able to accomplish this on my Windows work laptop fairly easily using AutoHotkey, but I have not yet been able to accomplish the same on my personal Arch Linux box with Qitle. I have tried something like this:
Key(['control', 'shift'], "j", lazy.spawn('xdotool key KP_Begin'))
but without success. Any ideas?
Thanks!
Alex