├── .gitattributes ├── README.md └── TermuxQuickstart.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Install [Stable]: 2 | ``` 3 | pkg install wget -y && wget https://raw.githubusercontent.com/Frontesque/TermuxQuickstart/master/TermuxQuickstart.sh && chmod +x TermuxQuickstart.sh && bash TermuxQuickstart.sh 4 | ``` 5 | 6 | Install [Development]: 7 | ``` 8 | pkg install git -y && git clone --branch development https://github.com/Frontesque/TermuxQuickstart && cd TermuxQuickstart && chmod +x TermuxQuickstart.sh && bash QuickstartLauncher.sh 9 | ``` 10 | -------------------------------------------------------------------------------- /TermuxQuickstart.sh: -------------------------------------------------------------------------------- 1 | pkg install termux-api -y 2 | #termux-toast -b cyan -b cyan -g center Termux Quickstart #Removed Because Line Was Causing Script To Freeze 3 | clear 4 | 5 | read -p " 6 | 7 | 8 | 9 | 10 | 11 | ╔═══════════════════════════════════════╗ 12 | ║ Termux Quickstart 1.1 ║ 13 | ╠═══════════════════════════════════════╣ 14 | ║ 1. Update Packages ║ 15 | ║ 2. Install Fedora ║ 16 | ║ 3. Install Ubuntu ║ 17 | ║ 4. Install Debian ║ 18 | ║ 5. Install Kali ║ 19 | ║ 6. Install Arch ║ 20 | ║ 7. Coming Soon ║ 21 | ║ 8. Coming Soon ║ 22 | ║ 9. Work In Progress ║ 23 | ║ X. Close Program ║ 24 | ╚═══════════════════════════════════════╝ 25 | Option: "; 26 | if [ $REPLY == "1" ]; then 27 | termux-toast -b cyan -g center Updating Software; 28 | apt update -y; 29 | apt upgrade -y; 30 | pkg update -y; 31 | pkg upgrade -y; 32 | apt install zip -y; 33 | apt install unzip -y; 34 | fi 35 | 36 | if [ $REPLY == "2" ]; then 37 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/Techriz/AndronixOrigin/master/Installer/Fedora/fedora.sh && bash fedora.sh; 38 | fi 39 | 40 | if [ $REPLY == "3" ]; then 41 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/Techriz/AndronixOrigin/master/Installer/Ubuntu/ubuntu.sh && bash ubuntu.sh; 42 | fi 43 | 44 | if [ $REPLY == "4" ]; then 45 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/Techriz/AndronixOrigin/master/Installer/Debian/debian.sh && bash debian.sh; 46 | fi 47 | 48 | if [ $REPLY == "5" ]; then 49 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/Techriz/AndronixOrigin/master/Installer/Kali/kali.sh && bash kali.sh; 50 | fi 51 | 52 | if [ $REPLY == "6" ]; then 53 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/Techriz/AndronixOrigin/master/Installer/Arch/armhf/arch.sh && bash arch.sh; 54 | fi 55 | 56 | if [ $REPLY == "7" ]; then 57 | echo not a command yet; 58 | fi 59 | 60 | if [ $REPLY == "8" ]; then 61 | echo not a command yet; 62 | fi 63 | 64 | if [ $REPLY == "9" ]; then 65 | echo not a command yet; 66 | fi 67 | 68 | if [ $REPLY == "X" ]; then 69 | echo Exiting Termux Quickstart; 70 | fi 71 | 72 | if [ $REPLY == "x" ]; then 73 | echo Exiting Termux Quickstart; 74 | fi 75 | 76 | echo Cleaning Up 77 | echo joe 78 | rm TermuxQuickstart.sh 79 | --------------------------------------------------------------------------------