21 lines
430 B
Bash
Executable File
21 lines
430 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#Clone the repo to the webapps folder
|
|
git clone https://carrot.tcmeta.net/gitea/kurtis/raspberry-pi-web-apps /home/pi/webapps
|
|
|
|
#Add new apps to menu
|
|
cp /home/pi/webapps/DesktopFiles/* /home/pi/.local/share/applications/
|
|
|
|
|
|
#Install/Update finished
|
|
clear
|
|
|
|
echo ""
|
|
echo ""
|
|
|
|
echo "Web Apps installed to /home/pi/webapps"
|
|
echo ""
|
|
echo "You can update this by going to Update Webapps in PREFERENCES"
|
|
echo ""
|
|
echo ""
|
|
echo "" |