Skip to content

Instantly share code, notes, and snippets.

@nordfjord
Created June 27, 2014 09:50
Show Gist options
  • Save nordfjord/0388966e282ad55d7202 to your computer and use it in GitHub Desktop.
Save nordfjord/0388966e282ad55d7202 to your computer and use it in GitHub Desktop.
My Autohotkeys
/*
* SteamGuide starts steam big picture when the guide button is pressed for 3 seconds
*/
#SingleInstance force
#NoTrayIcon
WaitKey()
{
KeyWait, Joy7, T3
return ErrorLevel
}
Joy7::
If WaitKey()
{
Run, "steam://open/bigpicture"
}
Return
/*
* This script closes the teamviewer "Sponsored Session" window automatically
*/
#Persistent
#NoTrayIcon
SetTimer, CloseTeamViewer, 1000
return
CloseTeamViewer:
IfWinExist, Sponsored session
Send {Enter}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment