this is what I'm trying to achieve using autohotkey:
I want my keyboard buttons to be from: Ctrl + Win + Alt to Win + Alt + Ctrl
And I can easily do that with autohotkey, but there is a problem: swithching between desktops. I would like to switch between desktops using LWin (which is now on the ctrl key) + left/right arrow key, the problem is that if I go to the logi option app and I set a shortcut the app recognize badly the keys, so actually I'm unable to switch between desktops using my mouse. Plus I would like to have ctrl (which is alt key) + tab to behave like alt tab.
Also, there are other features that I'm using on autohotkey that I would like to keep using, here is the script I'm using:
LAlt::LCtrl
RAlt::LAlt
^Space::Send, {Ctrl up}{LWin}
^Q::Send !{F4}
RCtrl::RAltHow can I improve this to achieve my needs? Thanks. Hope I explained myself well.
11 Answer
The Logitech Options software uses direct hardware input as far as I know, so Autohotkey does not work here.
However, you can use desktop control in Logitech Options with the MX Master via gesture control.
2