new logo :)

This commit is contained in:
JaKooLit 2025-02-06 11:58:25 +09:00
parent fc62a8b6b3
commit 994ada90ac

View File

@ -1,6 +1,8 @@
#!/bin/bash #!/bin/bash
# https://github.com/JaKooLit # https://github.com/JaKooLit
clear
# Set some colors for output messages # Set some colors for output messages
OK="$(tput setaf 2)[OK]$(tput sgr0)" OK="$(tput setaf 2)[OK]$(tput sgr0)"
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)" ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
@ -20,12 +22,11 @@ RESET="$(tput sgr0)"
# Check if running as root. If root, script will exit # Check if running as root. If root, script will exit
if [[ $EUID -eq 0 ]]; then if [[ $EUID -eq 0 ]]; then
echo "This script should ${WARNING}NOT${RESET} be executed as root! Exiting......." echo "${ERROR} This script should ${WARNING}NOT${RESET} be executed as root!! Exiting......."
printf "\n%.0s" {1..2}
exit 1 exit 1
fi fi
clear
# Function to check if the system is Ubuntu # Function to check if the system is Ubuntu
is_ubuntu() { is_ubuntu() {
# Check for 'Ubuntu' in /etc/os-release # Check for 'Ubuntu' in /etc/os-release
@ -43,10 +44,13 @@ fi
clear clear
printf "\n%.0s" {1..2} printf "\n%.0s" {1..2}
echo -e "\e[32m | _. |/ _ _ | o _|_ \e[39m" echo -e "\e[35m
echo -e "\e[32m \_| (_| o |\ (_) (_) |_ | |_ 2025\e[39m" ╦╔═┌─┐┌─┐╦ ╦ ╦┬ ┬┌─┐┬─┐┬ ┌─┐┌┐┌┌┬┐
printf "\n%.0s" {1..1} ╠╩╗│ ││ │║ ╠═╣└┬┘├─┘├┬┘│ ├─┤│││ ││ 2025
╩ ╩└─┘└─┘╩═╝ ╩ ╩ ┴ ┴ ┴└─┴─┘┴ ┴┘└┘─┴┘
\e[0m"
printf "\n%.0s" {1..1}
# Welcome message # Welcome message
echo "${SKY_BLUE}Welcome to JaKooLit's Debian Trixie/SID Hyprland (2025) Install Script!${RESET}" echo "${SKY_BLUE}Welcome to JaKooLit's Debian Trixie/SID Hyprland (2025) Install Script!${RESET}"