Skip to content

Instantly share code, notes, and snippets.

@Mintedshrimp
Mintedshrimp / UdroidMenu.sh
Last active August 21, 2024 09:23
Udroid Menu for ease of use (Updated UI)
#!/bin/bash
# Function to install Ubuntu
install_ubuntu() {
echo "Updating package list and upgrading packages..."
apt update && apt upgrade -y
apt install git -y
git clone https://github.com/RandomCoderOrg/fs-manager-udroid
cd fs-manager-udroid || { dialog --msgbox "🚫 Failed to enter fs-manager-udroid directory." 5 50; return; }