Hi, I was looking for a solution to a problem I am having on login. When I reboot, my microphone is muted, the keyboard indicator light for this stays illuminated until I login. After I login, the indicator light goes out and when I go into the audio settings, I find the microphone has been unmuted. Is there an easy way to change this behaviour? I tried using a bash script placed in the startup applications but it seems to run before the microphone becomes unmuted.
That sounds like something called a “race condition”. This is where start-up processes are occurring at the wrong time or getting missed.
Try a sleep command right at the start of the bash script.
Sleep 10
Thanks, that did the trick. For anyone else wondering, this is how it looks.
1 Like