commit 0f3cc9ce63d7c9c8e979eb2e9c8b2cc9fa15ef60 parent 381d110611c46c29fb01fb8c5b6e9bef6d243613 Author: Shipwreckt <conbur@protonmail.com> Date: Thu, 15 Feb 2024 06:35:54 +0000 Added some more colour, improved distro comment Diffstat:
M | fakefetch.sh | | | 22 | +++++++++++++--------- |
1 file changed, 13 insertions(+), 9 deletions(-)
diff --git 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')