Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switching audio source sets "Play sound effects through" to the now-previous audio source #12

Open
SCdF opened this issue Mar 29, 2017 · 10 comments

Comments

@SCdF
Copy link

SCdF commented Mar 29, 2017

$ SwitchAudioSource -c
DisplayPort

image

$ SwitchAudioSource -s "Built-in Output"
output audio device set to "Built-in Output"

image

The Dell monitor being DisplayPort.

This only happens if you have it set to follow audio devices. If play sound effects is set to a specific output device it will never move.

@bycosta
Copy link

bycosta commented Jun 26, 2017

+1

@gxfxyz
Copy link

gxfxyz commented Oct 8, 2018

@jumban
Copy link

jumban commented Dec 8, 2018

Would love to see this fixed as well. I switched from using an AppleScript that does the same thing to using this program because it is so much faster.

@tyrng
Copy link

tyrng commented Dec 29, 2018

Another workaround using Applescript (more like a replacement, sadly, requires 'Show volume in menu bar' to be enabled):

tell application "System Events"
	tell process "SystemUIServer"
		click (menu bar item 1 of menu bar 1 whose description contains "volume")
		click menu item "Your Device Name" of menu 1 of result
	end tell
end tell

@jumban
Copy link

jumban commented Dec 31, 2018

Another workaround using Applescript (more like a replacement, sadly, requires 'Show volume in menu bar' to be enabled):

tell application "System Events"
	tell process "SystemUIServer"
		click (menu bar item 1 of menu bar 1 whose description contains "volume")
		click menu item "Your Device Name" of menu 1 of result
	end tell
end tell

wow excellent. i am able to use it together with switchaudio-osx to get what i want. But there is a small problem. After running your script, the volume menu dialog stays open, showing all the output sources. How do I close it using the apple script? I tried clicking the menu bar again but it doesn't work.

Any ideas? Thank you so much.

@tyrng
Copy link

tyrng commented Jan 5, 2019

@jumban It shouldn't stay open as the script does the exact same thing as a user clicking on the UI. Did you change it to your desired device name to suit your usage?

@jumban
Copy link

jumban commented Jan 6, 2019

@jumban It shouldn't stay open as the script does the exact same thing as a user clicking on the UI. Did you change it to your desired device name to suit your usage?

I chained it to the end of the switchaudio-osx workflow, replacing the desired device name with Alfred's "{query}". I think I found the reason why the dialog box stays open. It seems that the script did not successfully select the output device, and I'm not sure why.

@jeffnuss
Copy link

jeffnuss commented Jan 5, 2022

I see this issue got closed, but I'm still seeing the behavior originally described. Any chance for a fix? I'm actually using the first apple script workaround suggested (in an alfred workflow), but would love to remove that dependency. Thanks for a useful utility!

@deweller
Copy link
Owner

I see in #39 (comment) that this issue remains.

It is definitely unexpected behavior that changing the output device changes the system device. And for me, it is fairly random as to what it switches to.

I'm relatively certain this is not caused by the SwithAudio code - but rather this is a quirk of Apple's CoreAudio APIs that I don't fully understand.

The only fix I can think of is to remember what the system output was set to - and then re-set it after changing the output device.

I'll have to check if the CoreAudio APIs even have the capability to set to "selected sound output device". It does feel like a hack but it might be the only way.

@unikitty37
Copy link

@jumban Thanks for posting the script, but on Monterey, I get "System Events got an error: Can’t get menu bar item 1 of menu bar 1 of process "SystemUIServer" whose description contains "volume". Invalid index." when running it.

Do I need to change something for more recent versions of macOS?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants