Add AutoStar and CloudBuddy apps
parent
9b930e1ced
commit
d10714c513
@ -0,0 +1 @@
|
||||
Botspot made, Botspot added.
|
@ -0,0 +1,9 @@
|
||||
Simple utility to make programs run on boot. The sky's the limit.
|
||||
People use this to:
|
||||
- Launch a website automatically, on boot.
|
||||
- Start a backup.
|
||||
- Launch your favorite apps on boot so they are ready to use sooner.
|
||||
- See what other apps have added autostart entries, and customize/disable them.
|
||||
|
||||
To run: Menu -> Accessories -> AutoStar
|
||||
To run in terminal: ~/autostar/main.sh
|
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 8.2 KiB |
@ -0,0 +1,19 @@
|
||||
#!/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
|
||||
}
|
||||
|
||||
# Get dependencies
|
||||
"${DIRECTORY}/pkg-install" "yad" "$(dirname "$0")" || exit 1
|
||||
|
||||
rm -rf ~/autostar || error "Failed to first remove autostar folder from $HOME!"
|
||||
echo "Downloading autostar..."
|
||||
git clone https://github.com/Botspot/autostar || error "Failed to clone AutoStar repository!"
|
||||
|
||||
echo "Running AutoStar setup script..."
|
||||
~/autostar/main.sh setup || error "AutoStar setup script failed!"
|
||||
|
@ -0,0 +1,14 @@
|
||||
#!/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
|
||||
}
|
||||
|
||||
#if your app installs any packages, keep this command here so those packages will be removed.
|
||||
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1
|
||||
|
||||
rm -rf ~/autostar ~/.local/share/applications/autostar.desktop
|
||||
|
@ -0,0 +1 @@
|
||||
https://github.com/Botspot/cloudbuddy
|
@ -0,0 +1 @@
|
||||
Botspot made, Botspot added.
|
@ -0,0 +1,5 @@
|
||||
CloudBuddy is the ultimate wizard for cloud storage. Google Drive, Onedrive, Dropbox, and many more.
|
||||
Botspot made this gui frontend for the popular rclone tool to connect to your cloud drives, download from them, upload to them, mount them to your file manager, and more. In addition, CloudBuddy features an interactive file browser to easily generate shareable links and to perform various server-side operations.
|
||||
|
||||
To run: Menu -> Internet -> CloudBuddy
|
||||
To run in terminal: ~/cloudbuddy/main.sh
|
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
@ -0,0 +1,19 @@
|
||||
#!/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
|
||||
}
|
||||
|
||||
# Get dependencies
|
||||
"${DIRECTORY}/pkg-install" "yad xclip expect" "$(dirname "$0")" || exit 1
|
||||
|
||||
rm -rf ~/cloudbuddy || error "Failed to first remove cloudbuddy folder from $HOME!"
|
||||
echo "Downloading cloudbuddy..."
|
||||
git clone https://github.com/Botspot/cloudbuddy || error "Failed to clone CloudBuddy repository!"
|
||||
|
||||
echo "Running CloudBuddy setup script..."
|
||||
~/cloudbuddy/main.sh setup || error "CloudBuddy setup script failed!"
|
||||
|
@ -0,0 +1,14 @@
|
||||
#!/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
|
||||
}
|
||||
|
||||
#if your app installs any packages, keep this command here so those packages will be removed.
|
||||
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1
|
||||
|
||||
rm -rf ~/cloudbuddy ~/.local/share/applications/cloudbuddy.desktop
|
||||
|
@ -0,0 +1 @@
|
||||
https://github.com/Botspot/cloudbuddy
|
Loading…
Reference in New Issue