Last active
June 11, 2019 09:04
-
-
Save blha303/28d4de5db417b931fb27ef6e44865f38 to your computer and use it in GitHub Desktop.
I don't have media keys on my keyboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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