Created
July 24, 2022 22:05
-
-
Save onyx-and-iris/5250489234215988972ef4104bd44f4f to your computer and use it in GitHub Desktop.
adds increment and decrement volume function for app gain using VMR.ahk
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
#Include VMR.ahk | |
vm := new VMR().login() | |
vol := 0.5 | |
vm.strip[6].AppGain := Format("(""Spotify"", {:.1f})", vol) | |
^a:: | |
vol -= 0.1 | |
vm.strip[6].AppGain := Format("(""Spotify"", {:.1f})", vol) | |
return | |
^d:: | |
vol += 0.1 | |
vm.strip[6].AppGain := Format("(""Spotify"", {:.1f})", vol) | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the autohotkey wrapper can be found here
https://github.com/SaifAqqad/VMR.ahk