Skip to content

Instantly share code, notes, and snippets.

@nullstalgia
Created October 17, 2022 03:37
Show Gist options
  • Save nullstalgia/18595feddac83ad8d6d8e0e8117e64d1 to your computer and use it in GitHub Desktop.
Save nullstalgia/18595feddac83ad8d6d8e0e8117e64d1 to your computer and use it in GitHub Desktop.
AutoHotKey script to delay SlimeVR reset bindings (from OVR Toolkit)
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; Reset
$^+!y::
SoundBeep
Sleep 3000
SoundBeep
SoundBeep
SoundBeep
Send, ^!+y
return
; Quick Reset
$^+!u::
SoundBeep
Sleep 3000
SoundBeep
SoundBeep
Send, ^!+u
return
; The beeps are just for extra feedback and can be safely removed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment