Been trying to figure out how to make this key work, but it just acts as a control key. I'm currently using a 105-key Spanish (Windows) layout, where the "<>" key is between Alt gr and the left arrow. xbindkeys key code: m:0x14 + c:105
Tried AutoKey with the following code:
# AutoKey script to create a "<>" key
output = "<>"
if event.keycode == 105 and event.get_modifier_state("Shift_L"):
keyboard.send_keys(">")
elif event.keycode == 105:
keyboard.send_keys("<")
but it crashed when I was setting the hotkeys.
Also tried editing the keyboard configuration file with no results, as I don't know what to modify.