This is the AHK script I use for my Hi13. Disabled keys are remapped with an additional Ctrl key (e.g. Win+D to minimize all is now Ctrl+Win+D). The only thing I haven’t got working is disabling the touchpad’s pinch-to-zoom for Microsoft Edge.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
; Disable touchpad zoom for Chrome, Internet Explorer, and other apps. Does NOT work for Edge.
; To disable touchpad zoom in Firefox, go to about:config and set the value of mousewheel.with_control.action to 0
; Discussed here https://productforums.google.com/forum/#!category-topic/chrome/discuss-chrome/-rtDLZmN9bk
#IfWinActive
{
^WheelUp::Return
^WheelDown::Return
#MaxHotkeysPerInterval 1000
}
; Invert scroll wheel up to scroll down
WheelUp::
Send {WheelDown}
Return
; Invert scroll wheel down to scroll up
WheelDown::
Send {WheelUp}
Return
; Disable minimize window
#Down::
Return
; Remap to Ctrl+Windows Key+Down
^#Down::
Send #{Down}
Return
; Disable minimize/maximize all windows (gesture swipe from top edge)
#d::
Return
; Remap to Ctrl+Windows Key+D
^#d::
Send #d
Return
; Disable taskbar show hidden icons (gesture swipe from bottom edge)
#b::
Return
; Remap to Ctrl+Windows Key+B
^#b::
Send #b
Return
; Disable opening the Action Center (gesture swipe from right edge)
#a::
Return
; Remap to Ctrl+Windows Key+A
^#a::
Send #a
Return
; Disable opening the Task View interface (gesture swipe from left edge)
#Tab::
Return
; Remap to Ctrl+Windows Key+Tab
^#Tab::
Send #{Tab}
Return