diff options
author | breadcat | 2020-12-01 11:28:28 +0000 |
---|---|---|
committer | breadcat | 2020-12-01 11:28:28 +0000 |
commit | c78920f7dcd75769ad05f81bd63eedc273318dbc (patch) | |
tree | 7fadfb8fff04f3f7b3a91fa4c140cde365953073 | |
parent | 85e2beb613ef2a15df54231cc522812fc065ed95 (diff) | |
download | ahka-c78920f7dcd75769ad05f81bd63eedc273318dbc.tar.gz ahka-c78920f7dcd75769ad05f81bd63eedc273318dbc.tar.bz2 ahka-c78920f7dcd75769ad05f81bd63eedc273318dbc.zip |
Finer grained volume control
-rw-r--r-- | ahk-assistant.ahk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk index 8d9b4a0..c167da4 100644 --- a/ahk-assistant.ahk +++ b/ahk-assistant.ahk @@ -58,8 +58,8 @@ SC029::Send, 0 ; Backtick send zeroes #SC029::Run %A_ScriptDir%\..\clickcall-dialhandler\dial.exe %clipboard%
^SC029::Send, `¬ ; C-Backtick send negations
!^0::Send {Volume_Mute} ; C-A-0 volume mute toggle
-!^-::Send {Volume_Down 3} ; C-A-- volume down
-!^=::Send {Volume_Up 3} ; C-A-+ volume up
+!^-::Send {Volume_Down 1} ; C-A-- volume down
+!^=::Send {Volume_Up 1} ; C-A-+ volume up
Insert::appendClipboard()
#LButton::WinSet, Style, -0x840000, A ; W-Click - remove window borders
!LButton::kdeMove() ; kde style window moving
|