diff --git a/apps/Arduino/description b/apps/Arduino/description new file mode 100644 index 0000000..c78b1de --- /dev/null +++ b/apps/Arduino/description @@ -0,0 +1 @@ +Latest version of Arduino IDE. Not outdated like the repository's Arduino IDE. diff --git a/apps/Arduino/icon-24.png b/apps/Arduino/icon-24.png new file mode 100644 index 0000000..7b2e7a5 Binary files /dev/null and b/apps/Arduino/icon-24.png differ diff --git a/apps/Arduino/icon-64.png b/apps/Arduino/icon-64.png new file mode 100644 index 0000000..ee385e3 Binary files /dev/null and b/apps/Arduino/icon-64.png differ diff --git a/apps/Arduino/install b/apps/Arduino/install new file mode 100755 index 0000000..5228970 --- /dev/null +++ b/apps/Arduino/install @@ -0,0 +1,16 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +wget https://downloads.arduino.cc/arduino-1.8.13-linuxarm.tar.xz || error "failed to download!" + +xz -d arduino-1.8.13-linuxarm.tar.xz || error "failed to extract with xz!" +tar -xf arduino-1.8.13-linuxarm.tar || error "failed to extract with tar!" +arduino-1.8.13/install.sh || error "failed to run install as non-root user!" +sudo arduino-1.8.13/install.sh || error "failed run install as root user!" + +rm /home/pi/Desktop/arduino-arduinoide.desktop || error "failed delete desktop shortcut!" +rm arduino-1.8.13-linuxarm.tar || error "failed delete archives!" \ No newline at end of file diff --git a/apps/Arduino/uninstall b/apps/Arduino/uninstall new file mode 100755 index 0000000..6d334cc --- /dev/null +++ b/apps/Arduino/uninstall @@ -0,0 +1,4 @@ +#!/bin/bash +arduino-1.8.13/uninstall.sh +sudo arduino-1.8.13/uninstall.sh +rm -rf arduino-1.8.13 diff --git a/apps/Arduino/website b/apps/Arduino/website new file mode 100644 index 0000000..b008dac --- /dev/null +++ b/apps/Arduino/website @@ -0,0 +1 @@ +https://www.arduino.cc/en/main/software diff --git a/apps/BalenaEtcher/description b/apps/BalenaEtcher/description new file mode 100644 index 0000000..6360a8d --- /dev/null +++ b/apps/BalenaEtcher/description @@ -0,0 +1 @@ +Flash SD cards with a disk image. Many file types supported. diff --git a/apps/BalenaEtcher/icon-24.png b/apps/BalenaEtcher/icon-24.png new file mode 100644 index 0000000..a357fa3 Binary files /dev/null and b/apps/BalenaEtcher/icon-24.png differ diff --git a/apps/BalenaEtcher/icon-64.png b/apps/BalenaEtcher/icon-64.png new file mode 100644 index 0000000..cc1480e Binary files /dev/null and b/apps/BalenaEtcher/icon-64.png differ diff --git a/apps/BalenaEtcher/install b/apps/BalenaEtcher/install new file mode 100755 index 0000000..fecea56 --- /dev/null +++ b/apps/BalenaEtcher/install @@ -0,0 +1,16 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +# Get dependencies +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" + +rm -f ./balena-etcher-electron_1.5.63_Raspbian_Buster_armhf.deb + +wget https://github.com/futurejones/balena-etcher-arm/releases/download/v1.5.63/balena-etcher-electron_1.5.63_Raspbian_Buster_armhf.deb + +sudo apt install -y ./balena-etcher-electron_1.5.63_Raspbian_Buster_armhf.deb || error "failed to install deb file!" +rm -f ./balena-etcher-electron_1.5.63_Raspbian_Buster_armhf.deb || error "failed to remove deb file!" \ No newline at end of file diff --git a/apps/BalenaEtcher/uninstall b/apps/BalenaEtcher/uninstall new file mode 100755 index 0000000..11252cf --- /dev/null +++ b/apps/BalenaEtcher/uninstall @@ -0,0 +1,10 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" + +sudo apt purge -y balena-etcher-electron || error "failed to purge the deb file!" diff --git a/apps/BalenaEtcher/website b/apps/BalenaEtcher/website new file mode 100644 index 0000000..d1212a6 --- /dev/null +++ b/apps/BalenaEtcher/website @@ -0,0 +1 @@ +https://www.raspberrypi.org/forums/viewtopic.php?f=62&t=255205&start=25#p1564958 diff --git a/apps/Chromium Media Edition/chromium-media-browser.desktop b/apps/Chromium Media Edition/chromium-media-browser.desktop new file mode 100644 index 0000000..19b6322 --- /dev/null +++ b/apps/Chromium Media Edition/chromium-media-browser.desktop @@ -0,0 +1,27 @@ +[Desktop Entry] +Version=1.0 +Name=Chromium (Media Edition) +GenericName=Web Browser (Media Edition) +Comment=Access the Internet +Exec=chromium-browser %U --user-agent="Mozilla/5.0 (X11; CrOS armv7l 12371.89.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36" +Terminal=false +X-MultipleArgs=false +Type=Application +Icon=chromium-browser +Categories=Network;WebBrowser; +MimeType=text/html;text/xml;application/xhtml_xml;x-scheme-handler/http;x-scheme-handler/https; +StartupNotify=true +Actions=NewWindow;Incognito;TempProfile; +X-AppInstall-Package=chromium-browser + +[Desktop Action NewWindow] +Name=Open a New Window (Media Edition) +Exec=chromium-browser --user-agent="Mozilla/5.0 (X11; CrOS armv7l 12371.89.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36" + +[Desktop Action Incognito] +Name=Open a New Window in incognito mode (Media Edition) +Exec=chromium-browser --incognito --user-agent="Mozilla/5.0 (X11; CrOS armv7l 12371.89.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36" + +[Desktop Action TempProfile] +Name=Open a New Window with a temporary profile (Media Edition) +Exec=chromium-browser --temp-profile --user-agent="Mozilla/5.0 (X11; CrOS armv7l 12371.89.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36" diff --git a/apps/Chromium Media Edition/description b/apps/Chromium Media Edition/description new file mode 100644 index 0000000..277ff1a --- /dev/null +++ b/apps/Chromium Media Edition/description @@ -0,0 +1,14 @@ +Play Widevine-protected video in Chromium. +This adds the ChromeOS DRM video decoding library to Chromium, and a ChromeOS user-agent. Websites you browse will think your Pi is a Chromebook! +This works on these websites: +• Netflix +• Hulu +• Amazon Prime +• Disney+ +• HBO +• Spotify +• Pandora +• Hoopla +• MUBI +• BritBox +• Bell Satellite TV diff --git a/apps/Chromium Media Edition/icon-24.png b/apps/Chromium Media Edition/icon-24.png new file mode 100644 index 0000000..e6d9e56 Binary files /dev/null and b/apps/Chromium Media Edition/icon-24.png differ diff --git a/apps/Chromium Media Edition/icon-64.png b/apps/Chromium Media Edition/icon-64.png new file mode 100644 index 0000000..c8f9c19 Binary files /dev/null and b/apps/Chromium Media Edition/icon-64.png differ diff --git a/apps/Chromium Media Edition/install b/apps/Chromium Media Edition/install new file mode 100755 index 0000000..294b9a7 --- /dev/null +++ b/apps/Chromium Media Edition/install @@ -0,0 +1,12 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +#curl -fsSL https://pi.vpetkov.net -o ventz-media-pi || error "Failed to download the script!" +#sh ventz-media-pi || error "Failed to run the script!" + +sudo cp "$(dirname "$0")/chromium-media-browser.desktop" /usr/share/applications/ || error "failed to create menu button!" +sudo cp "$(dirname "$0")/libwidevinecdm.so" /usr/lib/chromium-browser/ || error "Failed to copy libwidevinecdm.so!" diff --git a/apps/Chromium Media Edition/libwidevinecdm.so b/apps/Chromium Media Edition/libwidevinecdm.so new file mode 100755 index 0000000..d1e37ec Binary files /dev/null and b/apps/Chromium Media Edition/libwidevinecdm.so differ diff --git a/apps/Chromium Media Edition/uninstall b/apps/Chromium Media Edition/uninstall new file mode 100755 index 0000000..24c498b --- /dev/null +++ b/apps/Chromium Media Edition/uninstall @@ -0,0 +1,9 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +sudo rm /usr/lib/chromium-browser/libwidevinecdm.so || error "failed to delete libwidevinecdm.so!" +sudo rm /usr/share/applications/chromium-media-browser.desktop || error "failed to delete menu button!" diff --git a/apps/Chromium Media Edition/website b/apps/Chromium Media Edition/website new file mode 100644 index 0000000..9a37812 --- /dev/null +++ b/apps/Chromium Media Edition/website @@ -0,0 +1 @@ +https://blog.vpetkov.net/2020/03/30/raspberry-pi-netflix diff --git a/apps/CommanderPi/description b/apps/CommanderPi/description new file mode 100644 index 0000000..acf114b --- /dev/null +++ b/apps/CommanderPi/description @@ -0,0 +1 @@ +Easy RaspberryPi4 GUI system managment diff --git a/apps/CommanderPi/icon-24.png b/apps/CommanderPi/icon-24.png new file mode 100644 index 0000000..71dcc30 Binary files /dev/null and b/apps/CommanderPi/icon-24.png differ diff --git a/apps/CommanderPi/icon-64.png b/apps/CommanderPi/icon-64.png new file mode 100644 index 0000000..90eed46 Binary files /dev/null and b/apps/CommanderPi/icon-64.png differ diff --git a/apps/CommanderPi/install b/apps/CommanderPi/install new file mode 100755 index 0000000..6fd2c10 --- /dev/null +++ b/apps/CommanderPi/install @@ -0,0 +1,15 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +# Get dependencies +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/pkg-install" "python3-tk python3-pil python3-pil.imagetk" "$(dirname "$0")" || exit 1 + +git clone https://github.com/Jack477/CommanderPi || error "failed to download repository!" +cd /home/pi/CommanderPi || error "failed to enter repository!" +chmod +x install.sh || error "failed to mark install.sh as executable!" +./install.sh || error "failed to run install.sh!" diff --git a/apps/CommanderPi/installed-packages b/apps/CommanderPi/installed-packages new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/apps/CommanderPi/installed-packages @@ -0,0 +1 @@ + diff --git a/apps/CommanderPi/uninstall b/apps/CommanderPi/uninstall new file mode 100755 index 0000000..c020bae --- /dev/null +++ b/apps/CommanderPi/uninstall @@ -0,0 +1,12 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 + +rm -rf ~/CommanderPi || error "failed to remove commanderpi folder!" +sudo rm -f /usr/share/applications/commanderpi.desktop /home/pi/Desktop/commanderpi.desktop || error "failed to remove menu button!" \ No newline at end of file diff --git a/apps/CommanderPi/website b/apps/CommanderPi/website new file mode 100644 index 0000000..bdf6771 --- /dev/null +++ b/apps/CommanderPi/website @@ -0,0 +1 @@ +https://github.com/Jack477/CommanderPi diff --git a/apps/Cool Retro Term/description b/apps/Cool Retro Term/description new file mode 100644 index 0000000..66ab192 --- /dev/null +++ b/apps/Cool Retro Term/description @@ -0,0 +1 @@ +Simulates an old CRT terminal. diff --git a/apps/Cool Retro Term/icon-24.png b/apps/Cool Retro Term/icon-24.png new file mode 100644 index 0000000..f5b06fd Binary files /dev/null and b/apps/Cool Retro Term/icon-24.png differ diff --git a/apps/Cool Retro Term/icon-64.png b/apps/Cool Retro Term/icon-64.png new file mode 100644 index 0000000..ed1d084 Binary files /dev/null and b/apps/Cool Retro Term/icon-64.png differ diff --git a/apps/Cool Retro Term/install b/apps/Cool Retro Term/install new file mode 100755 index 0000000..82bc4b6 --- /dev/null +++ b/apps/Cool Retro Term/install @@ -0,0 +1,30 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +# Get dependencies +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/pkg-install" "build-essential qmlscene qt5-qmake qt5-default qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtgraphicaleffects qml-module-qtquick-dialogs qml-module-qtquick-localstorage qml-module-qtquick-window2 qml-module-qt-labs-settings qml-module-qt-labs-folderlistmodel" "$(dirname "$0")" || exit 1 + +# Get CRT from github +git clone --recursive https://github.com/Swordfish90/cool-retro-term || error "failed to clone repository!" + +# Compile +cd cool-retro-term || error "failed on cd step!" +qmake || error "failed on qmake step!" +make -j8 || error "failed on make step!" + +echo "[Desktop Entry] +Comment=Use the command line the old way +Exec=/home/pi/cool-retro-term/cool-retro-term +GenericName=Terminal emulator +Icon=/home/pi/cool-retro-term/app/icons/64x64/cool-retro-term.png +Name=Cool Retro Term +Categories=GTK;System;TerminalEmulator; +StartupNotify=true +Terminal=false +Type=Application +Keywords=shell;prompt;command;commandline;console;command line;execute;" >> /home/pi/.local/share/applications/crt.desktop \ No newline at end of file diff --git a/apps/Cool Retro Term/installed-packages b/apps/Cool Retro Term/installed-packages new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/apps/Cool Retro Term/installed-packages @@ -0,0 +1 @@ + diff --git a/apps/Cool Retro Term/uninstall b/apps/Cool Retro Term/uninstall new file mode 100755 index 0000000..561c79b --- /dev/null +++ b/apps/Cool Retro Term/uninstall @@ -0,0 +1,10 @@ +#!/bin/bash + +rm -rf ~/.cache/cool-retro-term +rm -rf ~/cool-retro-term +rm -f ~/.local/share/applications/crt.desktop + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 + +rm -rf ~/.local/share/cool-retro-term ~/cool-retro-term diff --git a/apps/Cool Retro Term/website b/apps/Cool Retro Term/website new file mode 100644 index 0000000..e290f84 --- /dev/null +++ b/apps/Cool Retro Term/website @@ -0,0 +1 @@ +https://github.com/Swordfish90/cool-retro-term diff --git a/apps/Cura/cura-icon.png b/apps/Cura/cura-icon.png new file mode 100644 index 0000000..8fd6f41 Binary files /dev/null and b/apps/Cura/cura-icon.png differ diff --git a/apps/Cura/description b/apps/Cura/description new file mode 100644 index 0000000..fa08b4e --- /dev/null +++ b/apps/Cura/description @@ -0,0 +1 @@ +Takes a 3D model and slices it for use in a 3D printer. diff --git a/apps/Cura/icon-24.png b/apps/Cura/icon-24.png new file mode 100644 index 0000000..31053b2 Binary files /dev/null and b/apps/Cura/icon-24.png differ diff --git a/apps/Cura/icon-64.png b/apps/Cura/icon-64.png new file mode 100644 index 0000000..5c09554 Binary files /dev/null and b/apps/Cura/icon-64.png differ diff --git a/apps/Cura/install b/apps/Cura/install new file mode 100755 index 0000000..108cea4 --- /dev/null +++ b/apps/Cura/install @@ -0,0 +1,26 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" + +wget -O ~/Cura-mb-master-armhf-20200902.AppImage https://www.dropbox.com/sh/s43vqzmi4d2bqe2/AAB-hPdiTvoExJx0kjuSx8C1a/Linux-armhf/Cura-mb-master-armhf-20200902.AppImage?dl=0 || error "Failed to download!" + +chmod +x ~/Cura-mb-master-armhf-20200902.AppImage + +echo "[Desktop Entry] +Name=Ultimaker Cura +GenericName=3D Printing Software +Comment=Cura converts 3D models into paths for a 3D printer. It prepares your print for maximum accuracy, minimum printing time and good reliability with many extra features that make your print come out great. +Exec=bash -c 'sudo modprobe fuse; ~/Cura-mb-master-armhf-20200902.AppImage' +Icon=cura-icon +Terminal=false +Type=Application +MimeType=application/sla;application/vnd.ms-3mfdocument;application/prs.wavefront-obj;image/bmp;image/gif;image/jpeg;image/png;model/x3d+xml; +Categories=Graphics;Education;Development;Science; +Keywords=3D;Printing; +StartupNotify=true" >> ~/.local/share/applications/cura.desktop || error "Failed to create menu button!" + +sudo cp "$(dirname $0)/cura-icon.png" /usr/share/icons/hicolor/128x128/apps/ || error "Failed to copy icon!" \ No newline at end of file diff --git a/apps/Cura/uninstall b/apps/Cura/uninstall new file mode 100755 index 0000000..f724b1d --- /dev/null +++ b/apps/Cura/uninstall @@ -0,0 +1,12 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +rm ~/.local/share/applications/cura.desktop +rm ~/Cura-mb-master-armhf-20200902.AppImage || error "failed to remove the AppImage!" +rm -rf ~/.cache/cura +#gio trash ~/.config/cura diff --git a/apps/Cura/website b/apps/Cura/website new file mode 100644 index 0000000..1860109 --- /dev/null +++ b/apps/Cura/website @@ -0,0 +1 @@ +https://community.ultimaker.com/topic/28746-experimental-cura-build-for-raspberry-pi-4-now-available/ diff --git a/apps/FreeCAD (precompiled)/icon-24.png b/apps/FreeCAD (precompiled)/icon-24.png new file mode 100644 index 0000000..150f025 Binary files /dev/null and b/apps/FreeCAD (precompiled)/icon-24.png differ diff --git a/apps/FreeCAD (precompiled)/icon-64.png b/apps/FreeCAD (precompiled)/icon-64.png new file mode 100644 index 0000000..02f2a00 Binary files /dev/null and b/apps/FreeCAD (precompiled)/icon-64.png differ diff --git a/apps/FreeCAD (precompiled)/install b/apps/FreeCAD (precompiled)/install new file mode 100755 index 0000000..6e771d6 --- /dev/null +++ b/apps/FreeCAD (precompiled)/install @@ -0,0 +1,24 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +# Get dependencies +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" + +"${DIRECTORY}/pkg-install" "cmake build-essential libtool lsb-release swig libboost-dev libboost-date-time-dev libboost-filesystem-dev libboost-graph-dev libboost-iostreams-dev libboost-program-options-dev libboost-python-dev libboost-regex-dev libboost-serialization-dev libboost-signals-dev libboost-thread-dev libcoin-dev libeigen3-dev libgts-bin libgts-dev libkdtree++-dev libmedc-dev libopencv-dev libproj-dev libvtk6-dev libx11-dev libxerces-c-dev libzipios++-dev qt4-dev-tools libqt4-dev libqt4-opengl-dev libqtwebkit-dev libshiboken-dev libpyside-dev pyside-tools python-dev python-matplotlib python-pivy python-ply python-pyside libocct*-dev occt-draw libocct-data-exchange-dev libocct-draw-dev libocct-visualization-dev libsimage-dev doxygen libcoin-doc dh-exec libspnav-dev" "$(dirname "$0")" || exit 1 + +#download from google drive +wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=10zsGG86z2iCN4bIfs4D4wg2hZJ4J5hGF' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=10zsGG86z2iCN4bIfs4D4wg2hZJ4J5hGF" -O freecad-precompiled.zip || error "failed to download archive from Google Drive!" + +rm -f /tmp/cookies.txt || echo "Warning: failed to remove cookies.txt." + +unzip ~/freecad-precompiled.zip || error "Failed to extract archive!" +rm -f ~/freecad-precompiled.zip || error "Failed to delete archive!" + +cd freecad-build || error "Failed to enter directory!" +sudo make install || error "sudo make install failed!" + +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 diff --git a/apps/FreeCAD (precompiled)/uninstall b/apps/FreeCAD (precompiled)/uninstall new file mode 100755 index 0000000..5d44925 --- /dev/null +++ b/apps/FreeCAD (precompiled)/uninstall @@ -0,0 +1,13 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 + +sudo rm -f $(cat ~/freecad-build/install_manifest.txt) /home/pi/.local/share/applications/org.freecadweb.FreeCAD.desktop || error "failed to remove every installed file!" + +rm -rf ~/freecad-precompiled /home/pi/FreeCAD-0.18.4 || error "failed to remove both installation folders!" diff --git a/apps/FreeCAD/description b/apps/FreeCAD/description new file mode 100644 index 0000000..b8de304 --- /dev/null +++ b/apps/FreeCAD/description @@ -0,0 +1,2 @@ +3D designer software. Unlike the repository's version of FreeCAD, this one actually works. +Warning: Takes several hours to compile! Compiling consumes 100% of the CPU, and 4GB of RAM. diff --git a/apps/FreeCAD/icon-24.png b/apps/FreeCAD/icon-24.png new file mode 100644 index 0000000..150f025 Binary files /dev/null and b/apps/FreeCAD/icon-24.png differ diff --git a/apps/FreeCAD/icon-64.png b/apps/FreeCAD/icon-64.png new file mode 100644 index 0000000..02f2a00 Binary files /dev/null and b/apps/FreeCAD/icon-64.png differ diff --git a/apps/FreeCAD/install b/apps/FreeCAD/install new file mode 100755 index 0000000..2acde3f --- /dev/null +++ b/apps/FreeCAD/install @@ -0,0 +1,39 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +echo -e '\e[103m\e[30mThis will take more than 1 hour to compile. It will max out the CPU the whole time. Continue? [Y/n]\e[39m\e[49m' +read answer +if [ "$answer" == 'n' ];then + exit 0 +fi + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/pkg-install" "cmake build-essential libtool lsb-release swig libboost-dev libboost-date-time-dev libboost-filesystem-dev libboost-graph-dev libboost-iostreams-dev libboost-program-options-dev libboost-python-dev libboost-regex-dev libboost-serialization-dev libboost-signals-dev libboost-thread-dev libcoin-dev libeigen3-dev libgts-bin libgts-dev libkdtree++-dev libmedc-dev libopencv-dev libproj-dev libvtk6-dev libx11-dev libxerces-c-dev libzipios++-dev qt4-dev-tools libqt4-dev libqt4-opengl-dev libqtwebkit-dev libshiboken-dev libpyside-dev pyside-tools python-dev python-matplotlib python-pivy python-ply python-pyside libocct*-dev occt-draw libocct-data-exchange-dev libocct-draw-dev libocct-visualization-dev libsimage-dev doxygen libcoin-doc dh-exec libspnav-dev" "$(dirname "$0")" || exit 1 + +wget https://github.com/FreeCAD/FreeCAD/archive/0.18.4.zip || error "failed to download ZIP file!" + +#ensure there's no directory in there already +rm -rf ~/FreeCAD-0.18.4 ~/freecad-build 2>/dev/null + +unzip 0.18.4.zip || error "failed to extract ZIP file!" + +rm 0.18.4.zip || error "failed to delete ZIP file!" + +mkdir freecad-build || error "failed to create folder freecad-build!" + +cd freecad-build || error "failed to enter directory freecad-build!" + +cmake -DPYTHON_EXECUTABLE=/usr/bin/python2.7 -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 -DPYTHON_LIBRARY=/usr/lib/arm-linux-gnueabihf/libpython2.7.so -DPYTHON_PACKAGES_PATH=/usr/local/lib/python2.7/dist-packages/ ../FreeCAD-0.18.4/ || error "failed to generate make file!" + +make -j8 || error "failed to compile!" + +sudo make install || error "sudo make install failed!" + +if [ ! -z "$(cat "${DIRECTORY}/installed-packages" | grep 'qt4-dev-tools')" ];then + sudo apt purge -y qt4-dev-tools qt4-designer || error "purging qt4-dev-tools failed!" +fi +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 \ No newline at end of file diff --git a/apps/FreeCAD/uninstall b/apps/FreeCAD/uninstall new file mode 100755 index 0000000..46d158a --- /dev/null +++ b/apps/FreeCAD/uninstall @@ -0,0 +1,13 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 + +sudo rm -f $(cat ~/freecad-build/install_manifest.txt) /home/pi/.local/share/applications/org.freecadweb.FreeCAD.desktop || error "failed to remove every installed file!" + +rm -rf ~/freecad-build /home/pi/FreeCAD-0.18.4 || error "failed to remove both installation folders!" diff --git a/apps/FreeCAD/website b/apps/FreeCAD/website new file mode 100644 index 0000000..1cec249 --- /dev/null +++ b/apps/FreeCAD/website @@ -0,0 +1 @@ +https://scruss.com/blog/2020/02/16/freecad-on-raspberry-pi-4/ diff --git a/apps/Pi Power Tools/description b/apps/Pi Power Tools/description new file mode 100644 index 0000000..d748b01 --- /dev/null +++ b/apps/Pi Power Tools/description @@ -0,0 +1,4 @@ +Easily edit RaspiOS image files with a suite of useful tools. +Full set of features: Advanced Mount, Shrink, Expand, Flash, Boot in a VM, Download, Mount (View), Edit partitions, and Repair. + +To run: Menu -> Accessories -> Pi Power Tools diff --git a/apps/Pi Power Tools/icon-24.png b/apps/Pi Power Tools/icon-24.png new file mode 100644 index 0000000..83145a5 Binary files /dev/null and b/apps/Pi Power Tools/icon-24.png differ diff --git a/apps/Pi Power Tools/icon-64.png b/apps/Pi Power Tools/icon-64.png new file mode 100644 index 0000000..33f384a Binary files /dev/null and b/apps/Pi Power Tools/icon-64.png differ diff --git a/apps/Pi Power Tools/install b/apps/Pi Power Tools/install new file mode 100755 index 0000000..b40c3d2 --- /dev/null +++ b/apps/Pi Power Tools/install @@ -0,0 +1,12 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +# Get dependencies +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/pkg-install" "yad systemd-container xserver-xephyr expect" "$(dirname "$0")" || exit 1 + +wget -O - https://raw.githubusercontent.com/Botspot/Pi-Power-Tools/master/update | bash diff --git a/apps/Pi Power Tools/uninstall b/apps/Pi Power Tools/uninstall new file mode 100755 index 0000000..1d16c1d --- /dev/null +++ b/apps/Pi Power Tools/uninstall @@ -0,0 +1,12 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 + +rm -rf ${HOME}/Pi-Power-Tools ${HOME}/Pi-Power-Tools.old || error "failed on rm step 1!" +rm -f ${HOME}/Desktop/ppt.desktop ${HOME}/.local/share/applications/ppt.desktop || error "failed on rm step 2!" diff --git a/apps/Pi Power Tools/website b/apps/Pi Power Tools/website new file mode 100644 index 0000000..b090b98 --- /dev/null +++ b/apps/Pi Power Tools/website @@ -0,0 +1 @@ +https://github.com/Botspot/Pi-Power-Tools diff --git a/apps/Raspi2png/description b/apps/Raspi2png/description new file mode 100644 index 0000000..e1d17a3 --- /dev/null +++ b/apps/Raspi2png/description @@ -0,0 +1,5 @@ +Takes a screenshot of the framebuffer. +Useful for overlay applications, like Minecraft or VLC, as this will capture them properly. + +Run in a terminal: raspi2png +The resulting image will be saved to /home/pi/snapshot.png diff --git a/apps/Raspi2png/icon-24.png b/apps/Raspi2png/icon-24.png new file mode 100644 index 0000000..3832d6f Binary files /dev/null and b/apps/Raspi2png/icon-24.png differ diff --git a/apps/Raspi2png/icon-64.png b/apps/Raspi2png/icon-64.png new file mode 100644 index 0000000..4012944 Binary files /dev/null and b/apps/Raspi2png/icon-64.png differ diff --git a/apps/Raspi2png/install b/apps/Raspi2png/install new file mode 100755 index 0000000..a21c57b --- /dev/null +++ b/apps/Raspi2png/install @@ -0,0 +1,19 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/pkg-install" "libpng12-dev" "$(dirname "$0")" || exit 1 + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +git clone https://github.com/AndrewFromMelbourne/raspi2png || error "failed to clone repository!" + +cd raspi2png || error "failed to enter directory!" + +make || error "failed to compile!" +sudo make install || error "sudo make install failed!" + +cd .. +rm -rf raspi2png || error "failed to delete directory!" diff --git a/apps/Raspi2png/installed-packages b/apps/Raspi2png/installed-packages new file mode 100644 index 0000000..a94e783 --- /dev/null +++ b/apps/Raspi2png/installed-packages @@ -0,0 +1,3 @@ +libpng12-dev +libpng12-dev + diff --git a/apps/Raspi2png/uninstall b/apps/Raspi2png/uninstall new file mode 100755 index 0000000..8999d1e --- /dev/null +++ b/apps/Raspi2png/uninstall @@ -0,0 +1,8 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +sudo rm /usr/bin/raspi2png diff --git a/apps/Raspi2png/website b/apps/Raspi2png/website new file mode 100644 index 0000000..e33b4fc --- /dev/null +++ b/apps/Raspi2png/website @@ -0,0 +1 @@ +https://github.com/AndrewFromMelbourne/raspi2png diff --git a/apps/Windows 10 Theme/description b/apps/Windows 10 Theme/description new file mode 100644 index 0000000..fdf343d --- /dev/null +++ b/apps/Windows 10 Theme/description @@ -0,0 +1,2 @@ +Make Raspberry Pi OS look as close to Windows 10 as possible. +Installs an icon theme, GTK theme, mouse cursor, openbox theme, xcompmgr, and custom panel. diff --git a/apps/Windows 10 Theme/icon-24.png b/apps/Windows 10 Theme/icon-24.png new file mode 100644 index 0000000..ea75c2d Binary files /dev/null and b/apps/Windows 10 Theme/icon-24.png differ diff --git a/apps/Windows 10 Theme/install b/apps/Windows 10 Theme/install new file mode 100755 index 0000000..9ad956e --- /dev/null +++ b/apps/Windows 10 Theme/install @@ -0,0 +1,14 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +# Get dependencies +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/pkg-install" "xcompmgr tint2 gtk2-engines-murrine" "$(dirname "$0")" || exit 1 + +git clone https://github.com/Botspot/Windows-10 | error "failed to dowload github repository!" + +~/Windows-10/install | error "failed to install!" diff --git a/apps/Windows 10 Theme/uninstall b/apps/Windows 10 Theme/uninstall new file mode 100755 index 0000000..87d62a8 --- /dev/null +++ b/apps/Windows 10 Theme/uninstall @@ -0,0 +1,11 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" + +~/Windows-10/uninstall | error "failed to uninstall!" +rm -rf ~/Windows-10 diff --git a/apps/Windows 10 Theme/website b/apps/Windows 10 Theme/website new file mode 100644 index 0000000..067c4ee --- /dev/null +++ b/apps/Windows 10 Theme/website @@ -0,0 +1 @@ +https://github.com/Botspot/Windows-10 diff --git a/apps/template/install b/apps/template/install new file mode 100755 index 0000000..e578f42 --- /dev/null +++ b/apps/template/install @@ -0,0 +1,11 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +# Get dependencies +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +#"${DIRECTORY}/pkg-install" "" "$(dirname "$0")" || exit 1 +read enter diff --git a/apps/template/uninstall b/apps/template/uninstall new file mode 100755 index 0000000..a6fd874 --- /dev/null +++ b/apps/template/uninstall @@ -0,0 +1,10 @@ +#!/bin/bash + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +DIRECTORY="$(dirname "$(dirname "$(dirname "$0")")")" +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 + diff --git a/data/apps/Arduino b/data/apps/Arduino new file mode 100644 index 0000000..f94d6ed --- /dev/null +++ b/data/apps/Arduino @@ -0,0 +1 @@ +installed diff --git a/data/apps/BalenaEtcher b/data/apps/BalenaEtcher new file mode 100644 index 0000000..f94d6ed --- /dev/null +++ b/data/apps/BalenaEtcher @@ -0,0 +1 @@ +installed diff --git a/data/apps/Chromium Media Edition b/data/apps/Chromium Media Edition new file mode 100644 index 0000000..f94d6ed --- /dev/null +++ b/data/apps/Chromium Media Edition @@ -0,0 +1 @@ +installed diff --git a/data/apps/CommanderPi b/data/apps/CommanderPi new file mode 100644 index 0000000..f94d6ed --- /dev/null +++ b/data/apps/CommanderPi @@ -0,0 +1 @@ +installed diff --git a/data/apps/Cool Retro Term b/data/apps/Cool Retro Term new file mode 100644 index 0000000..f94d6ed --- /dev/null +++ b/data/apps/Cool Retro Term @@ -0,0 +1 @@ +installed diff --git a/data/apps/Cura b/data/apps/Cura new file mode 100644 index 0000000..f94d6ed --- /dev/null +++ b/data/apps/Cura @@ -0,0 +1 @@ +installed diff --git a/data/apps/FreeCAD b/data/apps/FreeCAD new file mode 100644 index 0000000..6e88c9b --- /dev/null +++ b/data/apps/FreeCAD @@ -0,0 +1 @@ +uninstalled diff --git a/data/apps/FreeCAD (precompiled) b/data/apps/FreeCAD (precompiled) new file mode 100644 index 0000000..f94d6ed --- /dev/null +++ b/data/apps/FreeCAD (precompiled) @@ -0,0 +1 @@ +installed diff --git a/data/apps/Pi Power Tools b/data/apps/Pi Power Tools new file mode 100644 index 0000000..f94d6ed --- /dev/null +++ b/data/apps/Pi Power Tools @@ -0,0 +1 @@ +installed diff --git a/data/apps/Raspi2png b/data/apps/Raspi2png new file mode 100644 index 0000000..f94d6ed --- /dev/null +++ b/data/apps/Raspi2png @@ -0,0 +1 @@ +installed diff --git a/gui b/gui new file mode 100755 index 0000000..5ef13ff --- /dev/null +++ b/gui @@ -0,0 +1,73 @@ +#!/bin/bash +DIRECTORY="$(readlink -f "$(dirname "$0")")" +echo "$DIRECTORY" +while true;do + + APPS="$(echo "$(ls "${DIRECTORY}/apps")" | grep -v 'template')" + #APPS="$(echo "$(ls "${DIRECTORY}/apps")")" + #echo -e "$APPS\n" + + + APPS="$(echo "$APPS" | tr '\n' '|')" + + PREIFS="$IFS" + IFS=$"|" + LIST='' + for i in $APPS + do + + LIST="$LIST$(echo "${DIRECTORY}/icons/$(cat "${DIRECTORY}/data/apps/${i}" || echo "none").png") +${DIRECTORY}/apps/${i}/icon-24.png +$i +"\("$(cat "${DIRECTORY}/data/apps/${i}" || echo "Unknown state")"\)" $(echo "$(cat "${DIRECTORY}/apps/${i}/description" || echo "Description unavailable")" | head -n1) +" + done + IFS="$PREIFS" + LIST="$(echo -e "$LIST")" + #echo "$LIST" + output="$(echo -e "$LIST" | yad --center --title='Pi-Apps' --width=300 --height=300 --no-headers \ + --list --separator='\n' --window-icon="${DIRECTORY}/icons/logo.png" \ + --column=:IMG --column=:IMG --column=Name --column=tip:HD --print-column=3 --tooltip-column=4 \ + --button=Install!"${DIRECTORY}/icons/install.png":4 \ + --button=Uninstall!"${DIRECTORY}/icons/uninstall.png":2 \ + --button=Details!"${DIRECTORY}/icons/info.png"!'View more about the selected software:0' \ + 2>/dev/null)" + + button=$? #get exit code to determine which button was pressed + echo "Button: ${button}" + if [ $button -eq 252 ];then #if window manager x was pressed + exit 0 + fi + + echo "Output: ${output}EOO" + + case $button in + + 1) + echo "Error" + exit 1 + ;; + + 0) + echo "Details" + text="$(echo "$(cat "${DIRECTORY}/apps/${output}/description" || echo "Description unavailable")" | head -n1) +Website: $(cat "${DIRECTORY}/apps/${output}/website" || echo "unavailable") +$(echo "$(cat "${DIRECTORY}/apps/${output}/description" || echo "Description unavailable")" | grep -v "$(echo "$(cat "${DIRECTORY}/apps/${output}/description" || echo "Description unavailable")" | head -n1)")" + echo "$text" | yad --text-info --fontname=12 --wrap --show-uri \ + --image="${DIRECTORY}/apps/${output}/icon-64.png" --image-on-top \ + --title="Details of ${output}" --window-icon="${DIRECTORY}/icons/logo.png" --center --width=700 --height=300 \ + --button=Install!"${DIRECTORY}/icons/install.png":4 \ + --button=Uninstall!"${DIRECTORY}/icons/uninstall.png":2 \ + --button=Back!"${DIRECTORY}/icons/back.png":0 + ;; + + 2) + echo "Uninstall" + "${DIRECTORY}/manage" "$output" uninstall + ;; + 4) + echo "Install" + "${DIRECTORY}/manage" "$output" install + ;; + esac +done diff --git a/icons/back.png b/icons/back.png new file mode 100644 index 0000000..aad8b8a Binary files /dev/null and b/icons/back.png differ diff --git a/icons/check.png b/icons/check.png new file mode 100644 index 0000000..26c6152 Binary files /dev/null and b/icons/check.png differ diff --git a/icons/corrupted.png b/icons/corrupted.png new file mode 100644 index 0000000..623069d Binary files /dev/null and b/icons/corrupted.png differ diff --git a/icons/download.png b/icons/download.png new file mode 100644 index 0000000..07e2076 Binary files /dev/null and b/icons/download.png differ diff --git a/icons/exit.png b/icons/exit.png new file mode 100644 index 0000000..3de8f67 Binary files /dev/null and b/icons/exit.png differ diff --git a/icons/info.png b/icons/info.png new file mode 100644 index 0000000..881e897 Binary files /dev/null and b/icons/info.png differ diff --git a/icons/install.png b/icons/install.png new file mode 100644 index 0000000..de81aa9 Binary files /dev/null and b/icons/install.png differ diff --git a/icons/installed.png b/icons/installed.png new file mode 100644 index 0000000..7664e8e Binary files /dev/null and b/icons/installed.png differ diff --git a/icons/logo.png b/icons/logo.png new file mode 100644 index 0000000..14457b9 Binary files /dev/null and b/icons/logo.png differ diff --git a/icons/logo.svg b/icons/logo.svg new file mode 100644 index 0000000..d43b5da --- /dev/null +++ b/icons/logo.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/icons/none-24.png b/icons/none-24.png new file mode 100644 index 0000000..3832d6f Binary files /dev/null and b/icons/none-24.png differ diff --git a/icons/none-64.png b/icons/none-64.png new file mode 100644 index 0000000..4012944 Binary files /dev/null and b/icons/none-64.png differ diff --git a/icons/none.png b/icons/none.png new file mode 100644 index 0000000..cefdc10 Binary files /dev/null and b/icons/none.png differ diff --git a/icons/trash.png b/icons/trash.png new file mode 100644 index 0000000..57f4604 Binary files /dev/null and b/icons/trash.png differ diff --git a/icons/uninstall.png b/icons/uninstall.png new file mode 100644 index 0000000..6646e86 Binary files /dev/null and b/icons/uninstall.png differ diff --git a/icons/uninstalled.png b/icons/uninstalled.png new file mode 100644 index 0000000..4ff9ba4 Binary files /dev/null and b/icons/uninstalled.png differ diff --git a/manage b/manage new file mode 100755 index 0000000..ae2c277 --- /dev/null +++ b/manage @@ -0,0 +1,85 @@ +#!/bin/bash + +#$1 is name of software, like Arduino +#$2 is install/uninstall + +DIRECTORY="$(readlink -f "$(dirname "$0")")" + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} + +if [ -z "$1" ];then + error "You need to specify which app, and which action to apply to it. (install/uninstall)" +elif [ ! -d "${DIRECTORY}/apps/$1" ];then + error "${DIRECTORY}/apps/$1 does not exist!" +fi + +if [ "$2" == 'install' ];then + #ensure an install script is not already running + if ps -C install ;then + echo "An install script is already running. +Pi-Apps will wait until that one finishes before starting this one." | yad --text-info \ + --title="Waiting" --window-icon="${DIRECTORY}/icons/logo.png" --center --width=500 --height=100 \ + --button=OK!"${DIRECTORY}/icons/check.png":0 --fontname=12 --timeout=10 --timeout-indicator=top + while ps -C install ;do sleep 1; done + fi + + #if already installed then ask for confirmation + if [ "$(cat "${DIRECTORY}/data/apps/${1}" )" == 'installed' ];then + yad --text="$1 is already installed. Are you sure you want to install it again?" \ + --text-align=center --center --title='Quick question' --window-icon="${DIRECTORY}/icons/logo.png" \ + --button=No!"${DIRECTORY}/icons/exit.png":1 --button=Yes!"${DIRECTORY}/icons/check.png":0 || exit 0 + fi + + lxterminal --title="Installing $1" -e " + cd $HOME + echo 'corrupted' > \"${DIRECTORY}/data/apps/${1}\" + if \"${DIRECTORY}/apps/${1}/install\" ; then + echo 'installed' > \"${DIRECTORY}/data/apps/${1}\" + echo -en '\n\e[42m\e[30mCommand succeeded.\e[39m\e[49m\nClose this window to exit.' + read enter #technically you could press Enter to exit. + else + echo 'corrupted' > \"${DIRECTORY}/data/apps/${1}\" + echo -en '\n\e[41m\e[30mCommand failed!\e[39m\e[49m\nClose this window to exit.' + read enter #technically you could press Enter to exit. + fi" + #wait until script is done before this command exits + sleep 2 + while ps -C install >/dev/null;do sleep 1; done +elif [ "$2" == 'uninstall' ];then + #ensure an uninstall script is not already running + if ps -C install ;then + echo "An uninstall script is already running. +Pi-Apps will wait until that one finishes before starting this one." | yad --text-info \ + --title="Waiting" --window-icon="${DIRECTORY}/icons/logo.png" --center --width=500 --height=100 \ + --button=OK!"${DIRECTORY}/icons/check.png":0 --fontname=12 --timeout=10 --timeout-indicator=top + while ps -C uninstall ;do sleep 1; done + fi + + #if already uninstalled then ask for confirmation + if [ "$(cat "${DIRECTORY}/data/apps/${1}" )" == 'uninstalled' ];then + yad --text="$1 is already uninstalled. Are you sure you want to uninstall it again?" \ + --text-align=center --center --title='Quick question' --window-icon="${DIRECTORY}/icons/logo.png" \ + --button=No!"${DIRECTORY}/icons/exit.png":1 --button=Yes!"${DIRECTORY}/icons/check.png":0 || exit 0 + fi + + lxterminal --title="Uninstalling $1" -e " + cd $HOME + echo 'corrupted' > \"${DIRECTORY}/data/apps/${1}\" + if \"${DIRECTORY}/apps/${1}/uninstall\" ; then + echo 'uninstalled' > \"${DIRECTORY}/data/apps/${1}\" + echo -en '\n\e[42m\e[30mCommand succeeded.\e[39m\e[49m\nClose this window to exit.' + read enter #technically you could press Enter to exit. + else + echo 'corrupted' > \"${DIRECTORY}/data/apps/${1}\" + echo -en '\n\e[41m\e[30mCommand failed!\e[39m\e[49m\nClose this window to exit.' + read enter #technically you could press Enter to exit. + fi" + #wait until script is done before this command exits + sleep 2 + while ps -C uninstall >/dev/null;do sleep 1; done +else + error "Did not understand $2. It must be either "\'"install"\'" or "\'"uninstall"\'"." +fi diff --git a/pkg-install b/pkg-install new file mode 100755 index 0000000..ed88830 --- /dev/null +++ b/pkg-install @@ -0,0 +1,92 @@ +#!/bin/bash + +#$1 is a quotation-marked, space-seperated list of package names. +#$2 is the path to the program folder being installed. For example, /home/pi/pi-apps/apps/Arduino +#Example usage: ~/pi-apps/pkg-install "gparted buffer expect" ~/pi-apps/apps/Arduino + +PKG_LIST="$1" +PRG_DIR="$2" + +if [ -z "$PKG_LIST" ];then + echo -e "\e[91mNo packages were specified!\e[39m" + exit=1 +fi + +if [ -z "$PRG_DIR" ];then + echo -e "\e[91mNo program directory specified!\e[39m" + exit=1 +elif [ ! -d "$PRG_DIR" ];then + echo -e "\e[91m$PRG_DIR does not exist!\e[39m" + exit=1 +elif [ -z "$(echo "$PRG_DIR" | grep "pi-apps/apps")" ];then + echo -e "\e[33mWarning: That program directory ($PRG_DIR) is located outside of pi-apps.\e[39m" +fi + +if [ ! -z $exit ];then + echo -e '$1 is a quotation-marked, space-seperated list of package names.\n$2 is the path to the program folder being installed.\nExample usage: ~/pi-apps/pkg-install '\"'gparted buffer expect'\"' ~/pi-apps/apps/Arduino' + echo -e "\e[91mExiting now.\e[39m" + exit 1 +fi + +if [ "$PRG_DIR" == "*/" ]; then # ensure there is no trailing slash + PRG_DIR=${PRG_DIR: :-1} +fi + +echo "Running pkg-install..." + +output="$(sudo apt update 2>&1)" +exitcode=$? + +#inform user packages are upgradeable +if [ ! -z "$(echo "$output" | grep 'packages can be upgraded' )" ];then + echo -e "\e[33mSome packages can be upgraded.\e[39m Please consider running \e[4msudo apt full-upgrade -y\e[0m." +fi + +#exit on apt error +errors="$(echo "$output" | grep '^[(W)|(E)|(Err]:')" +if [ $exitcode != 0 ] || [ ! -z "$errors" ];then + echo -e "\e[91mFailed to run \e[4msudo apt update\e[0m\e[39m!" + echo -e "APT reported these errors:\n\e[91m$errors\e[39m" + exit 1 +fi + +for i in $PKG_LIST +do + PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null |grep "install ok installed")" + if [ "" == "$PKG_OK" ]; then + INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list + fi +done + +#save that list of installed packages in the program directory for future removal +echo $INSTALL_LIST >> "$PRG_DIR/installed-packages" + +if [ ! -z "$INSTALL_LIST" ];then + echo -e "These packages will be installed: \e[2m$INSTALL_LIST\e[22m" + output="$(sudo apt-get install -y $INSTALL_LIST 2>&1)" + exitcode=$? + errors="$(echo "$output" | grep '^[(W)|(E)|(Err]:')" + if [ $exitcode != 0 ] || [ ! -z "$errors" ];then + echo -e "\e[91mFailed to install the packages!\e[39m" + echo -e "APT reported these errors:\n\e[91m$errors\e[39m" + exit 1 + fi + #re-check package list. This time it should be blank. + INSTALL_LIST='' + for i in $PKG_LIST + do + PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null |grep "install ok installed")" + if [ "" == "$PKG_OK" ]; then + INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list + fi + done + + if [ ! -z $INSTALL_LIST ];then + echo -e "\e[91mAPT did not exit with an error, but these packages failed to install somehow: $INSTALL_LIST\e[39m" + exit 1 + else + echo -e "\e[32mAll packages were installed succesfully.\e[39m" + fi +else + echo -e "\e[32mNo new packages to install. Nothing to do!\e[39m" +fi diff --git a/purge-installed b/purge-installed new file mode 100755 index 0000000..b5d7aeb --- /dev/null +++ b/purge-installed @@ -0,0 +1,75 @@ +#!/bin/bash + +#$1 is the path to the program folder being installed. For example, /home/pi/pi-apps/apps/Arduino +#Example usage: ~/pi-apps/uninstall-installed ~/pi-apps/apps/Arduino + +PRG_DIR="$1" + +if [ -z "$PRG_DIR" ];then + echo -e "\e[91mNo program directory specified!\e[39m" + exitcode=1 +elif [ ! -d "$PRG_DIR" ];then + echo -e "\e[91m$PRG_DIR does not exist!\e[39m" + exitcode=1 +elif [ -z "$(echo "$PRG_DIR" | grep "pi-apps/apps")" ];then + echo -e "\e[33mWarning: That program directory ($PRG_DIR) is located outside of pi-apps.\e[39m" +fi + +if [ ! -z $exitcode ];then + echo -e "\e[91mExiting now.\e[39m" + exit $exit +fi + +function error { + echo -e "\e[31m$1\e[39m" + exit 1 +} +echo "Running purge-installed..." +PKG_LIST="$(cat "$PRG_DIR/installed-packages")" + +if [ ! -f "$PRG_DIR/installed-packages" ];then + echo -e "\e[33mDoes $PRG_DIR/installed-packages exist?\e[39m" + exit 0 +fi + +if [ -z "$PRG_DIR/installed-packages" ];then + echo "Nothing to purge. Exiting now." + exit 0 +fi + +output="$(sudo apt purge -y $PKG_LIST 2>&1)" +exitcode=$? +errors="$(echo "$output" | grep '^[(W)|(E)|(Err]:')" +sudo apt autoremove -y && sudo apt clean && sudo apt-get purge -y $(dpkg -l | grep '^rc' | awk '{print $2}') +if [ $exitcode != 0 ] || [ ! -z "$errors" ];then + echo -e "\e[91mFailed to uninstall the packages!\e[39m" + echo -e "APT reported these errors:\n\e[91m$errors\e[39m" + exit 1 +fi + +#ensure all packages are really purged +INSTALL_LIST='' +for i in $PKG_LIST +do + PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null |grep "install ok installed")" + if [ "" != "$PKG_OK" ]; then + INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list + fi +done +sudo apt purge -y $INSTALL_LIST 2>/dev/null + +#ensure all packages are really purged +INSTALL_LIST='' +for i in $PKG_LIST +do + PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null |grep "install ok installed")" + if [ "" != "$PKG_OK" ]; then + INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list + fi +done +if [ ! -z "$INSTALL_LIST" ];then + error "\e[91mAPT did not exit with an error, but these packages are still installed somehow: $INSTALL_LIST\e[39m" +else + echo -e "\e[32mAll packages were purged succesfully.\e[39m" + rm "$PRG_DIR/installed-packages" +fi