-
-
Save appelgriebsch/95cbc5655bf4df8dd9ac1c5e8c332386 to your computer and use it in GitHub Desktop.
Revisions
-
julianxhokaxhiu revised this gist
May 21, 2019 . 1 changed file with 7 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,33 +1,35 @@ # Enable autodiscover AirPlay Client support on Arch Linux ( like on macOS ) ## Step 1 Install required dependencies ```sh $ pacman -S avahi pulseaudio-zeroconf ``` ## Step 2 Enable and Start Avahi daemon ```sh $ systemctl enable --now avahi-daemon.service ``` ## Step 3 Enable the required module on Pulseaudio ( paste this at the end of `/etc/pulse/default.pa` ): ```sh ### Enable AirPlay support load-module module-raop-discover ``` ## Step 4 Restart Pulseaudio: ```sh $ systemctl --user restart pulseaudio.service ``` ## Step 5 If everything worked fine you should be able to autodiscover all your AirPlay devices and connect to them. Enjoy! -
julianxhokaxhiu created this gist
May 21, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,33 @@ # Step 1 Install required dependencies ```sh $ pacman -S avahi pulseaudio-zeroconf ``` # Step 2 Enable and Start Avahi daemon ```sh $ systemctl enable --now avahi-daemon.service ``` # Step 3 Enable the required module on Pulseaudio ( paste this at the end of `/etc/pulse/default.pa` ): ```sh ### Enable AirPlay support load-module module-raop-discover ``` # Step 4 Restart Pulseaudio: ```sh $ systemctl --user restart pulseaudio.service ``` # Step 5 If everything worked fine you should be able to autodiscover all your AirPlay devices and connect to them. Enjoy!