Amazing, it works!
I’ve gotten this really twisted idea that all shortcuts used often should be reached with my left hand. The other hand I hold my Wacom pen all the time.
As a tip, a thank you, with AutoHotKey on PC and KeyboardMaestro on Mac, I have a lot of custom keys on the almost unused Windows key on PC and Ctrl key on Mac. This is also handy, if your using several different 3D apps (on different systems). So in AutoHotKey I add this:
; #=Win ^=Ctrl +=Shift !=Alt
#IfWinActive, ahk_exe blender.exe
$#g:: ; Toggle Grid
send !+^g
return
$#w:: ; Toggle Wireframe
send !+^w
return
#IfWinActive
And as a shortcut in Blender I have the custom keys as Shift, Alt, Ctrl + W and G.
PS. To use Win + G key on Windows without a game recorder showing up, go to settings and search for game bar shortcuts and turn it off.
PPS. You will also run into the problem of Blender already having a hotkey for Shift Alt Ctrl + G. Something to remove object from all collections? So I do understand why people don’t do this stuff often, so many hotkeys that can break. I just unclicked that, don’t think I ever will use it.