使用 altGr 键在 GNU/Linux 下设置快捷方式/键绑定(但 Autokey 或其他方法重新调整键)

set up a shortcut / keybinding under GNU/Linux with altGr key (but Autokey nor other methods reconize the key)

我需要做一个简单的快捷方式,这个问题快把我逼疯了。 每当我按下 AltGR+Backspace 时,我都想模拟一个 CTRL+LEFT(arrow).

问题是 AutoKey 没有获得 AltGR 输入(也没有 xbindkeys 或其他方法)。

我尝试用 xbindkeys 来做,但是 AltGr 被视为 "Mod5 + ISO_Level3_Shift" 输入,尽管我不知道如何做,但这并不不工作:

"xte 'keydown Control_L' 'keydown Left' 'keyup Control_L'"
    m:0x80 + c:22
    Mod5 + BackSpace 

在此先感谢您的帮助!

我找到了一个xbindkeys的解决方案,我需要在组合键后插入“+ Release”,所以:

"xte 'keydown Control_L' 'key Left' 'keyup Control_L'"
    Mod5 + BackSpace + Release