79682995

Date: 2025-06-28 12:28:39
Score: 0.5
Natty:
Report link

You can try AutoHotKey

For AutoHotKey v2:

; TOUCHPAD on off alt+1
touchpadEnabled:=True
!1::{
    global touchpadEnabled
    touchpadEnabled:=!touchpadEnabled
    Run "SystemSettingsAdminFlows.exe EnableTouchPad " touchpadEnabled
    MsgBox (touchpadEnabled?'FOO':'BAR') ' - ' touchpadEnabled
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hakan