diff --git a/bashrc.txt b/bashrc.txt index 0fc58964..b6936da4 100644 --- a/bashrc.txt +++ b/bashrc.txt @@ -201,3 +201,24 @@ export NVM_DIR="$HOME/.nvm" # Sets Up Node Version Manager export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm + +# Set up TTY colors +# pulled form https://github.com/lewisacidic/nord-tty +if [ "$TERM" = "linux" ]; then + echo -en \\e]P02E3440 + echo -en \\e]P1BF616A + echo -en \\e]P2A3BE8C + echo -en \\e]P3EBCB8B + echo -en \\e]P481A1C1 + echo -en \\e]P5B48EAD + echo -en \\e]P688C0D0 + echo -en \\e]P7E5E9F0 + echo -en \\e]P84C566A + echo -en \\e]P9BF616A + echo -en \\e]PAA3BE8C + echo -en \\e]PBEBCB8B + echo -en \\e]PCB48EAD + echo -en \\e]PD8FBCBB + echo -en \\e]PEECEFF4 + clear +fi