Skip to content

Feature Request: Lock Volume #431

@ibex-are-goats

Description

@ibex-are-goats

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
}
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions