37 lines
2 KiB
Text
37 lines
2 KiB
Text
|
#!/bin/bash
|
||
|
|
||
|
UNDERLINE=$(tput sgr 0 1)
|
||
|
BOLD=$(tput bold)
|
||
|
ROUGE=$(tput setaf 1)
|
||
|
VERT=$(tput setaf 2)
|
||
|
JAUNE=$(tput setaf 3)
|
||
|
BLEU=$(tput setaf 4)
|
||
|
MAUVE=$(tput setaf 5)
|
||
|
CYAN=$(tput setaf 6)
|
||
|
BLANC=$(tput setaf 7)
|
||
|
NORMAL=$(tput sgr0)
|
||
|
INV=$(tput smso)
|
||
|
BOLDROUGE=${BOLD}${ROUGE}
|
||
|
BOLDVERT=${BOLD}${VERT}
|
||
|
BOLDJAUNE=${BOLD}${JAUNE}
|
||
|
BOLDBLEU=${BOLD}${BLEU}
|
||
|
BOLDMAUVE=${BOLD}${MAUVE}
|
||
|
BOLDCYAN=${BOLD}${CYAN}
|
||
|
BOLDBLANC=${BOLD}${BLANC}
|
||
|
|
||
|
printf "\n\n"
|
||
|
printf $BOLDJAUNE
|
||
|
printf "██╗ ██╗ ██████╗ ██████╗ ██████╗ ██████╗ █████╗ ███████╗██╗██╗ \n"
|
||
|
printf "╚██╗ ██╔╝██╔════╝ ██╔════╝ ██╔══██╗██╔══██╗██╔══██╗██╔════╝██║██║ \n"
|
||
|
printf " ╚████╔╝ ██║ ███╗██║ ███╗██║ ██║██████╔╝███████║███████╗██║██║ \n"
|
||
|
printf " ╚██╔╝ ██║ ██║██║ ██║██║ ██║██╔══██╗██╔══██║╚════██║██║██║ \n"
|
||
|
printf " ██║ ╚██████╔╝╚██████╔╝██████╔╝██║ ██║██║ ██║███████║██║███████╗\n"
|
||
|
printf " ╚═╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝╚══════╝\n"
|
||
|
printf "$BOLDROUGE Customize Linux Mint & Ubuntu derivatives made easier\n"
|
||
|
printf "$BOLDBLANC GPLv3 - Francois B. (Makotosan) - makotonoblog.be\n"
|
||
|
printf "\n"
|
||
|
printf $NORMAL
|
||
|
printf "You just have to type "$VERT"yggdrasil.sh"$NORMAL" in a terminal and follow the menus.\n"
|
||
|
printf "A headless mode is also available, type "$VERT"yggdrasil -h"$NORMAL" for more informations.\n"
|
||
|
printf "Enjoy ;-)\n\n"
|