summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShipwreckt <conbur@protonmail.com>2024-02-15 06:35:54 +0000
committerShipwreckt <conbur@protonmail.com>2024-02-15 06:35:54 +0000
commit0f3cc9ce63d7c9c8e979eb2e9c8b2cc9fa15ef60 (patch)
treeef81385cf4854379d60c9dddd0fdd431bf2d2b6f
parent381d110611c46c29fb01fb8c5b6e9bef6d243613 (diff)
Added some more colour, improved distro comment
-rw-r--r--fakefetch.sh22
1 files changed, 13 insertions, 9 deletions
diff --git a/fakefetch.sh b/fakefetch.sh
index 1f0ec67..842ddcb 100644
--- a/fakefetch.sh
+++ b/fakefetch.sh
@@ -22,16 +22,24 @@
# The colour you want to set is probaby not listed so you will need to define it
# yourself I've left comments on how to do this.
-#Help with colours https://www.ditig.com/publications/256-colors-cheat-sheet
PURPLE='\033[38;5;92m'
MAGENTA='\033[38;5;98m'
BLUE='\033[38;5;33m'
DBLUE='\033[38;5;27m'
-#Add more colours :0 also update website when you can please
-Text=$BLUE
-Background=$DBLUE
+ORANGE='\033[38;5;214m'
+DORANGE='\033[38;5;208m'
+
+GREEN='\033[38;5;46m'
+DGREEN='\033[38;5;34m'
+
+#Custom Colours
+#BLACK='\033[38;5;0m' (replace the 0 with a colour from this list https://www.ditig.com/publications/256-colors-cheat-sheet )
+
+#Change to your desired colour
+Text=$ORANGE
+Background=$DORANGE
#----------------------------------------------------------------------------------#
# Variables #
@@ -43,11 +51,7 @@ USERNAME=$(whoami)
#This sets your host name
HOSTNAME=$(uname -n)
-#This shows what Distro you are using, only one can be active
-
-#you will need a package called lsb-release
-#sudo pacman -S lsb-release
-#sudo apt-get install lsb-release
+#This shows what Distro you are using
DISTRO=$(lsb_release -sd | sed 's/"//g')