diff --git a/AHK/capslock_f13.ahk b/AHK/capslock_f13.ahk new file mode 100644 index 0000000..785a7ec --- /dev/null +++ b/AHK/capslock_f13.ahk @@ -0,0 +1,6 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +; USE CTRL + SPACE TO TOGGLE THE EFFECT ON AND OFF +CapsLock:: F13 \ No newline at end of file diff --git a/AHK/volumecontrol.ahk b/AHK/volumecontrol.ahk index 1491785..8c2941b 100644 --- a/AHK/volumecontrol.ahk +++ b/AHK/volumecontrol.ahk @@ -3,18 +3,46 @@ SendMode Input ; Recommended for new scripts due to its superior speed and reli SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. ; Alt-F11, Alt-F12 = sound down and up -!F11:: +; WINDOWS 7 USERS: You need +; `Send {Volume_Up}` instead of `SoundSet +5` and +; `Send {Volume_Down}` instead of `SoundSet -5`. +; The `SoundSet, +1, , mute` will still work okay. + +vol_down(amount) { - SoundSet -5 + SoundSet -%amount% return } -!F12:: + +vol_up(amount) { - SoundSet +5 + SoundSet +%amount% SoundGet, sound_mute, Master, mute if sound_mute = On { - SoundSet, +1, , mute + SoundSet, +0, , mute } return } + +!F11:: +{ + vol_down(5) + return +} ++!F11:: +{ + vol_down(1) + return +} + +!F12:: +{ + vol_up(5) + return +} ++!F12:: +{ + vol_up(1) + return +}