Installing UxPlay on Linux
This guide explains how to:
Install UxPlay on Fedora
Create a launch script
Create a .desktop launcher so UxPlay appears in the Apps menu
Run UxPlay in the background without freezing the launcher
Install UxPlay and create Launch Script
sudo dnf install uxplay
mkdir -p ~/bin
nano ~/bin/start-uxplay.sh
In nano add
#!/bin/bash
nohup uxplay >/dev/null 2>&1 &
chmod +x ~/bin/start-uxplay.sh
Create desktop app launcher
mkdir -p ~/.local/share/applications
nano ~/.local/share/applications/uxplay.desktop
In nano add
[Desktop Entry]
Type=Application
Name=UxPlay
Comment=Start the UxPlay AirPlay receiver
Exec=/home/YOURUSERNAME/bin/start-uxplay.sh
Icon=video-display
Terminal=false
Categories=AudioVideo;
chmod +x ~/.local/share/applications/uxplay.desktop
update-desktop-database ~/.local/share/applications/
To Stop UxPlay simply run command in terminal
pkill uxplay