aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-12-15 01:50:14 +0100
committerJohn Ankarström <john@ankarstrom.se>2021-12-15 01:50:14 +0100
commit9baa19758e248ea7c4a76e5b554d94a488ef6a2c (patch)
treee0a49d585cdf712031b730a23c2db5617c050885
parent202698bf248db68275d55611c903aafa0c666248 (diff)
downloadahk-9baa19758e248ea7c4a76e5b554d94a488ef6a2c.tar.gz
volume: Disable scroll volume change hotkey
-rw-r--r--tt.volume.ahk2
1 files changed, 2 insertions, 0 deletions
diff --git a/tt.volume.ahk b/tt.volume.ahk
index 5946469..4c69248 100644
--- a/tt.volume.ahk
+++ b/tt.volume.ahk
@@ -2,9 +2,11 @@
;; -> body
+/*
XButton2::SendInput, {XButton2}
XButton2 & WheelUp::SetVolume(GetKeyState("Shift") ? 2 : 1)
XButton2 & WheelDown::SetVolume(GetKeyState("Shift") ? -2 : -1)
+*/
RAlt & F6::SetVolume(GetKeyState("Shift") ? 2 : 1)
RAlt & F5::SetVolume(GetKeyState("Shift") ? -2 : -1)