diff --git a/VolumeFix/VolumeFix.ahk b/VolumeFix/VolumeFix.ahk new file mode 100644 index 0000000..0efad88 --- /dev/null +++ b/VolumeFix/VolumeFix.ahk @@ -0,0 +1,12 @@ +; Fix Windows Volume: +$Volume_Up:: + SoundGet, volume + Send {Volume_Up} + SoundSet, volume + 1 +Return + +$Volume_Down:: + SoundGet, volume + Send {Volume_Down} + SoundSet, volume - 1 +Return \ No newline at end of file