summaryrefslogtreecommitdiff
path: root/fakefetch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fakefetch.sh')
-rw-r--r--fakefetch.sh39
1 files changed, 39 insertions, 0 deletions
diff --git a/fakefetch.sh b/fakefetch.sh
new file mode 100644
index 0000000..c06a4e8
--- /dev/null
+++ b/fakefetch.sh
@@ -0,0 +1,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}" \ No newline at end of file