Skip to content

Instantly share code, notes, and snippets.

@atomtigerzoo
Created September 23, 2016 09:06
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 atomtigerzoo/eda99dfb1dba5fe1911f870efe325b18 to your computer and use it in GitHub Desktop.
Save atomtigerzoo/eda99dfb1dba5fe1911f870efe325b18 to your computer and use it in GitHub Desktop.
My Autohotkey script
;
; Useful hotkeys
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; !=ALT, +=Shift, ^=STRG, #=WINDOWS-Key
; Useful on macintosh keyboards on windows
F13::Send, {PRINTSCREEN}
; Control loudness
F16::Send {Volume_Mute} ; Mute volume
F17::Send {Volume_Down} ; Lower the master volume by 3 intervals.
F18::Send {Volume_Up} ; Raise the master volume by 1 interval (typically 5%).
; Keys against RSI
F14::Send {F5} ; Reload window
F15 & Tab::AltTab ; Alt-Tab alternative
; Open everything.exe
#Space::Run "C:\Program Files (x86)\Everything\Everything.exe"
; Show Thunderbird if open
#t::
SetTitleMatchMode, 2
DetectHiddenWindows, On
IfWinExist, - Mozilla Thunderbird
{
WinActivate, - Mozilla Thunderbird
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment