This is the biggest thing keeping me from enjoying Ubuntu/Linux.
Ideally I'd like to just be able to run my AutoHotKey script on Ubuntu, but I didn't have much luck getting that working with Wine.
Here's what I'm doing in AHK (using extra modifiers also works, Shift+Alt+l is Shift+right).
!l:: Send, {Right}
+!l:: Send, +{Right}
^!l:: Send, ^{Right}
^+!l:: Send, ^+{Right}
I tried AutoKey, but it wasn't consuming input, remapping Alt + I to right arrow key worked, but it still executed Alt + I, which sometimes selects an item from the application menu.
The closest I got was xbindkeys
for setting up hotkeys, this seems to work great. And xvkbd
for simulating input; this part is really buggy; it doesn't work in all programs, and causes me to lose focus a lot, among other issues.
For anyone wondering what I'm trying to do: I use I J K L as arrow keys while Alt is down.