Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ installlog "3. Install the Raspberry Pi Network Without Internet Installation (F
installlog "4. Install the Bluetooth Only Installation"
installlog "5. Install the Snapcast Installation (BETA), choose from Snapcast Server, Client, or Both (Requires Minor Configuration)"
installlog "6. Install a Custom Raspberry Pi Audio Receiver"
installlog "7. Uninstall"

Install="0"
while true
do
read -p "Which installation would you like to choose? (1/2/3/4/5/6) : " Install
read -p "Which installation would you like to choose? (1/2/3/4/5/6/7) : " Install
case "$Install" in
1)
# Car Installation - Previously Raspberry Pi Audio Receiver Install Car Install
Expand Down Expand Up @@ -135,6 +136,11 @@ do
YesNo "Do you want to setup device as a UPnP Renderer? (y/n) : " && GMedia="y"
break
;;
7)
echo "Uninstalling..."
full_uninstall
break
;;
*)
echo "Please choose a valid choice"
esac
Expand Down