diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-28 21:33:13 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-28 21:35:12 +0200 |
commit | 4565be9f76c6b7c001afadc1998a9a3950261f7a (patch) | |
tree | 8c187d86601a0c1924548e0763fd66de1e8009d6 | |
parent | add vim_solarized.sh (diff) | |
download | linux-home-4565be9f76c6b7c001afadc1998a9a3950261f7a.tar.gz linux-home-4565be9f76c6b7c001afadc1998a9a3950261f7a.zip |
bash: adjust PS1 to Solarized light theme
-rw-r--r-- | %HOME%/.bashrc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc index 5ed9119..e3d514d 100644 --- a/%HOME%/.bashrc +++ b/%HOME%/.bashrc @@ -8,7 +8,10 @@ case "$-" in *) return ;; esac -PS1="\[\e[1;32m\]\h\[\e[m\] \[\e[1;34m\]\W\[\e[m\] # \[$(tput sgr0)\]" +# Tango: +#PS1="\[\e[1;32m\]\h\[\e[m\] \[\e[1;34m\]\W\[\e[m\] # \[$(tput sgr0)\]" +# Solarized (light): +PS1="\[\e[1;35m\]\h\[\e[m\] \[\e[1;36m\]\W\[\e[m\] # \[$(tput sgr0)\]" # `echo "!)"` doesn't work otherwise (namely, in third-party scripts): set +o histexpand |