0

I need to do a simple shortcut and this problem is driving me crazy. Whenever I press AltGR+Backspace I would like to simulate a CTRL+LEFT(arrow).

The thing is that AutoKey doesn't get the AltGR input (and neither xbindkeys or other methods).

I tried to do it with xbindkeys but AltGr is seen as a "Mod5 + ISO_Level3_Shift" input and despite that I can't figure out how to do it, this doesn't work:

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

Thanks in advance for any help!

GabrieleMartini
  • 1,665
  • 2
  • 19
  • 26
Santiago
  • 361
  • 4
  • 21
  • 1
    Stackoverflow is _not_ a forum! There are questions and there are answers. If you have found an _answer_ to _question_, post it as one! Do NOT edit your _question_ to insert an answer into it, all while adding a (solved) to the title. – dandan78 Jan 26 '18 at 22:02
  • sorry I'll modify the post and add the solution as an answer, thanks for the feedback. – Santiago Jan 27 '18 at 13:09

1 Answers1

0

I find a solution with xbindkeys, I needed to insert "+ Release" after the combination of keys, so:

"xte 'keydown Control_L' 'key Left' 'keyup Control_L'"
    Mod5 + BackSpace + Release
Santiago
  • 361
  • 4
  • 21