Skip to content

Instantly share code, notes, and snippets.

@blha303
Last active June 11, 2019 09:04
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 blha303/28d4de5db417b931fb27ef6e44865f38 to your computer and use it in GitHub Desktop.
Save blha303/28d4de5db417b931fb27ef6e44865f38 to your computer and use it in GitHub Desktop.
I don't have media keys on my keyboard
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#InstallKeybdHook
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; win+f4
#F4::MEDIA_NEXT
; win+f5
#F5::MEDIA_PLAY_PAUSE
; win+f6
#F6::VOLUME_MUTE
; win+f7
#F7::VOLUME_DOWN
; win+f8
#F8::VOLUME_UP
; win+f9
#F9::Run, calc
; win+f10
#F10::Run, %appdata%\Spotify\Spotify.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment