From e4c6e42efbfa9352ec1a8601cb052b51ce7d14e2 Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Sat, 3 Feb 2024 15:13:48 -0400 Subject: [PATCH] Add volumefix ahk script --- VolumeFix/VolumeFix.ahk | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 VolumeFix/VolumeFix.ahk 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