Created
July 22, 2014 13:21
-
-
Save groupsky/1b350126fba16868febd to your computer and use it in GitHub Desktop.
Configure PulseAudio to discover and use remote servers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get install pulseaudio-module-zeroconf | |
pacmd load-module module-native-protocol-tcp | |
pacmd load-module module-zeroconf-discover | |
sudo service avahi-daemon restart | |
echo "Select one of the available sinks to stream your audio" | |
echo "pacmd set-default-sink <index|name>" | |
echo | |
pacmd list-sinks | grep index -A 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment