Last active
May 4, 2017 17:30
-
-
Save gustavomdsantos/3c01b99ccdaf855ced39 to your computer and use it in GitHub Desktop.
AutoHotKey script that remaps F6 - F10 keys on Windows PC keyboard without Media buttons for better use in media players like Spotify. These keys are the same that I use on my Linux Mint notebook, but that OS have a built-in hotkey tweaker. This script doesn't override important Win hotkeys.
This file contains 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
; AutoHotKey Beginner Tutorial: https://www.autohotkey.com/docs/Tutorial.htm | |
; AutoHotKey Key list: https://autohotkey.com/docs/KeyList.htm | |
; AutoHotKey Hotkeys: https://www.autohotkey.com/docs/Hotkeys.htm | |
#F9::MEDIA_PLAY_PAUSE | |
#F10::MEDIA_NEXT | |
#F6::VOLUME_MUTE | |
#F7::VOLUME_DOWN | |
#F8::VOLUME_UP | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment