Skip to content

Instantly share code, notes, and snippets.

@roshkins
Created May 5, 2021 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roshkins/c3e88f9319518c82a7d47ac87761768c to your computer and use it in GitHub Desktop.
Save roshkins/c3e88f9319518c82a7d47ac87761768c to your computer and use it in GitHub Desktop.
Toggle your Oculus Guardian with the insert key
toggl := False
Ins::
if toggl {
RunWait, %ComSpec% /c "adb shell setprop debug.oculus.guardian_pause 0"
toggl := False
} Else {
RunWait, %ComSpec% /c "adb shell setprop debug.oculus.guardian_pause 1"
toggl := True
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment