Feature Request: Lock Volume #694
ibex-are-goats
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I just had to write an autohotkey script to lock my mic volume because random games will change it without me knowing. It needs to stay at 70 because above that reveals some background electrical noise. A simple checkbox by every audio device with a volume slider (in my case, line-in on device number 3) would do the job. Below you can see my script.
Loop
{
SoundGet, line_in_mic_volume, MASTER, VOLUME, 3
if line_in_mic_volume = 70
{
Sleep, 9000 ; 9 second delay before checking again because it's not that important
}
else
{
SoundSet, 70, MASTER, VOLUME, 3
}
}
Beta Was this translation helpful? Give feedback.
All reactions