blob: c06a4e8796d9dccb266b46d5123867ad4d52246a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/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}"
|