Made this little script for those who want some ASCII art and their os information easily.

Code:
#This is a script that was produced by me, Zeal
#I would dearly like to thank inxi for providing me with a simple list :P
#Enjoy!

#Instillation

#Just run the script with cd *folder* and ./OSDescription.sh
#If you want to make an alias like I did, then do this

#gedit ~/.bashrc
#Find aliases
#
#alias os ='bash ~/???/OSDescription.sh'
#alias OS ='bash ~/???/OSDescription.sh'
#alias oS ='bash ~/???/OSDescription.sh'
#alias Os ='bash ~/???/OSDescription.sh'
#
#Putting these allows for quick and easy use.
#Having simple mispell solves your quicktyping problems XD

clear

display_center(){
    columns="$(tput cols)"
    while IFS= read -r line; do
        printf "%*s\n \033[0;31m" $(( (${#line} + columns) / 2)) "$line"
    done < "$1"
}

display_center "/root/Scripting/Bash/OS-Info/kalisymbol.txt"

echo -e "\033[0;30m"
echo -e "Operainting System Information:"
echo -e ""
apt-get install inxi -y >.nul
inxi -F
echo -e "\033[01;34mScript by: \033[0;37mZeal, with inxi for data"
echo -e ""
The file is a .sh . Use as you wish