Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- rainbow_flash() {
- text="$1"
- colors=(
- "\033[31m" # Red
- "\033[32m" # Green
- "\033[33m" # Yellow
- "\033[34m" # Blue
- "\033[35m" # Magenta
- "\033[36m" # Cyan
- "\033[37m" # White
- )
- while true; do
- for ((i=0; i<${#text}; i++)); do
- color="${colors[$((RANDOM % ${#colors[@]}))]}"
- echo -ne "${color}${text:$i:1}"
- sleep 0.05
- done
- echo -e "\033[0m"
- sleep 0.2
- done
- }
- loading_animation() {
- loading="...................................................."
- while true; do
- for ((i=0; i<${#loading}; i++)); do
- echo -ne "\r${loading:0:i}."
- sleep 0.1
- done
- done
- }
- clear
- echo "loading please wait .................................."
- loading_animation &
- loading_pid=$!
- sleep 2
- kill $loading_pid
- rainbow_flash " ██████████ ███ "
- rainbow_flash "░░███░░░░███ ░░░ "
- rainbow_flash " ░███ ░░███ ██████ █████ █████ ████ ██████ ████████ ██████ ██████ "
- rainbow_flash " ░███ ░███ ███░░███░░███ ░░███ ░░███ ░░░░░███ ░░███░░███ ███░░███ ███░░███"
- rainbow_flash " ░███ ░███░███████ ░███ ░███ ░███ ███████ ░███ ░███ ░███ ░░░ ░███████ "
- rainbow_flash " ░███ ███ ░███░░░ ░░███ ███ ░███ ███░░███ ░███ ░███ ░███ ███░███░░░ "
- rainbow_flash " ██████████ ░░██████ ░░█████ █████░░████████ ████ █████░░██████ ░░██████ "
- rainbow_flash "░░░░░░░░░░ ░░░░░░ ░░░░░ ░░░░░ ░░░░░░░░ ░░░░ ░░░░░ ░░░░░░ ░░░░░░ "
- echo "Deviance Shell Version 6.9"
- echo ""
- echo "Initializing Deviance..."
- sleep 2
- for i in {1..10}; do
- delay=$((RANDOM % 3 + 1))
- message_type=$((RANDOM % 5))
- case $message_type in
- 0) echo "[!] ERROR: System overheating detected. Please cool down the CPU.";;
- 1) echo "[*] WARNING: Memory corruption detected at address 0x$(openssl rand -hex 4).";;
- 2) echo "[>] ALERT: Unusual activity detected in /var/log/$(openssl rand -hex 2). Investigate immediately.";;
- 3) echo "[+] Success: You now have root access (just kidding).";;
- 4) echo "[~] Deviance mode activated. Proceed with caution.";;
- esac
- sleep $delay
- done
- echo "Deviance completed. Stay curious, stay deviant."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement