summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorxyz <gky44px1999@gmail.com>2021-05-09 00:18:10 -0700
committerxyz <gky44px1999@gmail.com>2021-05-09 00:18:10 -0700
commitdae3feaf6968525182def7c6f8abd8511f8612c0 (patch)
tree9591e3c24727938c63a9d9702814330be6cc16e5 /.bashrc
parent091b6a13ccbe933122795028652cb52d2b8cdb3a (diff)
change PS1 color to not bold
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/.bashrc b/.bashrc
index e3c838f7..91b9d3d5 100644
--- a/.bashrc
+++ b/.bashrc
@@ -8,10 +8,10 @@
# default PS1
#PS1='[\u@\h \W]\$ '
-# 1: bold, 91: bright red
+# 0: not bold, 91: bright red
# \e[m act like \e[0m, means reset so commands after it will not be colored
# https://en.wikipedia.org/wiki/ANSI_escape_code#3-bit_and_4-bit
-PS1='\e[1;91m[\u@\h \W]\$ \e[0m'
+PS1='\e[0;91m[\u@\h \W]\$ \e[0m'
alias ls='ls --color=auto'
alias ll='ls -lah --color=auto'