25 lines
727 B
Bash
25 lines
727 B
Bash
#!/bin/bash
|
|
|
|
"${DIRECTORY}/manage" install-if-not-installed Scrcpy || exit 1
|
|
#Remove scrcpy menu button
|
|
sudo rm -f /usr/share/applications/scrcpy.desktop
|
|
|
|
install_packages python3-pip python3-dev python3-tk python3-pil.imagetk || error "Failed to install dependencies"
|
|
|
|
cd /tmp
|
|
git_clone https://gitlab.com/gazlene/droidbuddy || error 'Could not clone AndroidBuddy repo!'
|
|
sudo mv -f /tmp/droidbuddy /opt
|
|
|
|
sudo pip3 install Pillow
|
|
|
|
echo "[Desktop Entry]
|
|
Name=AndroidBuddy
|
|
Comment=GUI for Android device recovery and maintainence
|
|
Icon=$(dirname "$0")/icon-64.png
|
|
Exec=python3 main.py
|
|
Path=/opt/droidbuddy
|
|
Type=Application
|
|
Encoding=UTF-8
|
|
Terminal=false
|
|
Categories=Utility;" | sudo tee /usr/share/applications/androidbuddy.desktop
|