#!/bin/bash # __ _ __ _ _ # / _| | | / _| | | | | # | |_ __ _| | _____| |_ ___| |_ ___| |__ # | _/ _` | |/ / _ \ _/ _ \ __/ __| '_ \ # | || (_| | < __/ || __/ || (__| | | | # |_| \__,_|_|\_\___|_| \___|\__\___|_| |_| #===========================# # Welcome to fakefetch # #===========================# #This is just neofetch but # # You do it yourself ! # #===========================# #===========================# # colours # #===========================# #Help with colours https://www.ditig.com/publications/256-colors-cheat-sheet PURPLE='\033[38;5;92m' #replace the 92 with whatever colour you want BLUE='\033[38;5;33m' YELLOW='\033[38;5;98m' RESET='\033[0m' #===========================# # This prints whatever you want to be printed echo -e "${PURPLE} .--. Connor@comrade${RESET}" echo -e "${PURPLE} |o_o | ===============================${RESET}" echo -e "${PURPLE} |:_/ | OS → ${YELLOW}Arch Linux x86_64${RESET}" echo -e "${PURPLE} // \\ \\ Cpu → ${YELLOW}AMD Ryzen 3 3200G${RESET}" echo -e "${PURPLE} (| | ) Gpu → ${YELLOW}NVIDIA GeForce GTX 1650${RESET}" echo -e "${PURPLE} /'\\_ _/ \\ Term → ${YELLOW}Alacritty${RESET}" echo -e "${PURPLE} \\___)=(___/ ===============================${RESET}"