Skip to content

Commit

Permalink
Create 1click.install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
AryanVBW authored Oct 10, 2024
1 parent d2988d0 commit 918307d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions 1click.install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/bin/bash
echo "#####################################################";
echo "# _ _ ____ _ _ #";
echo "# | | (_)_ __ _ ___ _| _ \ _ __ ___ (_) __| |#";
echo "# | | | | '_ \| | | \ \/ / | | | '__/ _ \| |/ _` |#";
echo "# | |___| | | | | |_| |> <| |_| | | | (_) | | (_| |#";
echo "# |_____|_|_| |_|\__,_/_/\_\____/|_| \___/|_|\__,_|#";
echo "# One-Click Installer #";
echo "# by Vivek W #";
echo "# Github.com/AryanVBW #";
echo "#####################################################";
echo "Updating and upgrading packages..."
pkg update -y && pkg upgrade -y
echo "Setting up storage permissions..."
termux-setup-storage
echo "Installing wget and figlet..."
pkg install wget -y && pkg install figlet -y
echo "Downloading LinuxDroid menu script..."
curl -O https://github.com/AryanVBW/LinuxDroid/releases/download/scripts/LinuxDroidmenu.sh
chmod +x LinuxDroidmenu.sh
echo "Downloading default bashrc..."
curl -O https://github.com/AryanVBW/LinuxDroid/releases/download/A1/default.bashrc
chmod +x default.bashrc
echo "Replacing current .bashrc with default bashrc..."
rm -rf .bashrc && cp default.bashrc .bashrc
echo "Downloading and running LinuxDroid script..."
curl -O https://github.com/AryanVBW/LinuxDroid/releases/download/scripts/LinuxDroid.sh
chmod +x LinuxDroid.sh
bash LinuxDroid.sh

0 comments on commit 918307d

Please sign in to comment.