Skip to content

Instantly share code, notes, and snippets.

@Mintedshrimp
Mintedshrimp / Browser.py
Last active September 6, 2024 20:10
Put index.html In templates folder in working directory then Install flask and requests using pip then run this using "python Browser.py"
from flask import Flask, render_template, request, redirect, Response
from flask_cors import CORS
import requests
import socket
import logging
app = Flask(__name__)
CORS(app)
logging.basicConfig(level=logging.INFO)
@Mintedshrimp
Mintedshrimp / PrDisCusMen.sh
Last active August 16, 2024 19:48
F*ck yeah I just made an custom proot-distro menu , original script by 23xvx!!! I just made it easier to execute and gave it an GUI using dialog in terminal, execute using bash for best results!!! Enjoy 😊.
#!/bin/bash
while true; do
dialog --clear --title "╔══════════════════╗\nβ•‘ Menu β•‘\nβ•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•" \
--menu "Please choose an option:" 15 50 5 \
1 "🐧 Install proot-distro" \
2 "🌐 Install Custom Distro" \
3 "πŸ”‘ Login" \
4 "πŸ—‘οΈ Remove Existing Distro" \
#!/bin/bash
# Define color codes
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
BLUE='\033[0;34m'
CYAN='\033[0;36m'
RESET='\033[0m' # Reset to default color
@Mintedshrimp
Mintedshrimp / colors.properties
Created August 12, 2024 11:27
Change termux background color Using RGB
background=#300039
@Mintedshrimp
Mintedshrimp / RGB.sh
Last active August 12, 2024 11:18
Change the look of termux:RGB
echo "export PS1='\[\e[38;2;0;255;0m\]╭── \[\e[38;2;255;59;0m\]Termux@Home\[\e[38;2;255;255;0m\] 𝛀\[\e[38;2;0;255;0m\] ────|\[\e[38;2;255;181;127m\]πŸ„ͺ\[\e[38;2;0;255;0m\]|[\[\e[38;2;255;255;0m\]☣\[\e[38;2;0;255;0m\]]\[\n\[\e[38;2;0;255;0m\]╰─────── \[\e[38;2;52;48;54m\]β“Ύ\[\e[38;2;0;145;145m\]➜\[\e[38;2;102;47;95m\]'" ~/.bashrc && source ~/.bashrc
echo "export PS1='\[\e[1;33m\]╭── \[\e[1;31m\]Local@Termux\[\e[1;33m\] ────|\[\e[1;33m\]πŸ„ͺ|[\[\e[1;32m\]☣\[\e[0;33m\]]\[\n\[\e[1;33m\]╰─────── \[\e[0;30m\]β“Ύ\[\e[1;36m\]➜\[\e[5;35m\]'" ~/.bashrc && source ~/.bashrc
@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; }