diff --git a/apps/All Is Well/description b/apps/All Is Well/description new file mode 100644 index 0000000..f4d7da4 --- /dev/null +++ b/apps/All Is Well/description @@ -0,0 +1 @@ +ALL IS WELL is a bash script that allows users to easily update and upgrade their repositories and packages on linux. It will also fix any broken packages and dependencies. Forget about typing all update/upgrade commands manually, when ALL IS WELL! diff --git a/apps/All Is Well/icon-24.png b/apps/All Is Well/icon-24.png new file mode 100644 index 0000000..2e7ea80 Binary files /dev/null and b/apps/All Is Well/icon-24.png differ diff --git a/apps/All Is Well/icon-64.png b/apps/All Is Well/icon-64.png new file mode 100644 index 0000000..10e1ea3 Binary files /dev/null and b/apps/All Is Well/icon-64.png differ diff --git a/apps/All Is Well/install b/apps/All Is Well/install new file mode 100755 index 0000000..df51f05 --- /dev/null +++ b/apps/All Is Well/install @@ -0,0 +1,23 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +mkdir AIW +cd ~/AIW || error "Failed to enter directory!" +wget 'https://raw.githubusercontent.com/spectrumgamer75/Bash-Scripts/master/ALL%20IS%20WELL%20(V2.0)/aiwrpi.sh' || error "Failed to download!" +chmod +x 'aiwrpi.sh' +echo "[Desktop Entry] +Name=All Is Well +GenericName=Update Helper and Fixer +Comment= ALL IS WELL is a bash script that allows users to easily update and upgrade their repositories and packages on linux. It will also fix any broken packages and dependencies. +Exec=$HOME/AIW/aiwrpi.sh +Icon=$HOME/pi-apps/apps/All Is Well/icon-24.png +Terminal=true +StartupNotify=true +Type=Application +Categories=Utility;" > ~/.local/share/applications/aiw.desktop || error "Failed to create menu button!" diff --git a/apps/All Is Well/uninstall b/apps/All Is Well/uninstall new file mode 100755 index 0000000..3e13cc1 --- /dev/null +++ b/apps/All Is Well/uninstall @@ -0,0 +1,5 @@ +#! /bin/bash +# This is the uninstall script for the All Is Well script +rm ~/.local/share/applications/aiw.desktop +rm -r ~/AIW +exit 0 diff --git a/apps/All Is Well/website b/apps/All Is Well/website new file mode 100644 index 0000000..220fbb5 --- /dev/null +++ b/apps/All Is Well/website @@ -0,0 +1 @@ +www.github.com/spectrumgamer75