mediakeys.ahk
· 417 B · AutoHotkey
Raw
#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.
#F4::MEDIA_NEXT
#F5::MEDIA_PLAY_PAUSE
#F6::VOLUME_MUTE
#F7::VOLUME_DOWN
#F8::VOLUME_UP
#F9::Run, calc
#F10::Run, %appdata%\Spotify\Spotify.exe
| 1 | #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. |
| 2 | #InstallKeybdHook |
| 3 | SendMode Input ; Recommended for new scripts due to its superior speed and reliability. |
| 4 | SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. |
| 5 | |
| 6 | #F4::MEDIA_NEXT |
| 7 | |
| 8 | #F5::MEDIA_PLAY_PAUSE |
| 9 | |
| 10 | #F6::VOLUME_MUTE |
| 11 | |
| 12 | #F7::VOLUME_DOWN |
| 13 | |
| 14 | #F8::VOLUME_UP |
| 15 | |
| 16 | #F9::Run, calc |
| 17 | |
| 18 | #F10::Run, %appdata%\Spotify\Spotify.exe |