Created
December 20, 2023 00:48
-
-
Save 31/da5bcdfa8da00dc57c6b7621f688fd67 to your computer and use it in GitHub Desktop.
Adjust Windows volume by 1 instead of 2, AutoHotkey v2
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
$Volume_Up:: | |
{ | |
volume := SoundGetVolume() | |
Send "{Volume_Up}" | |
SoundSetVolume volume + 1 | |
} | |
$Volume_Down:: | |
{ | |
volume := SoundGetVolume() | |
Send "{Volume_Down}" | |
SoundSetVolume volume - 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment