LINUX 提示符美化

1. 美化一

代码:

1
2
3
4
5
6
RED='\[\e[31;1m\]'
Yello='\[\e[33;1m\]'
Green='\[\e[32;1m\]'
End='\[\e[0m\]'
Pur='\[\e[35;1m\]'
export PS1="$Yello[$End$RED\u$End$Green@$End$Yello\h$End:$Green\w$End$Yello]${End}${Pur}\\$ $End"

效果

linux_meihua1.png

2. 美化二

代码

1
2
echo "export PS1='\[\033[01;31m\]\u\[\033[00m\]@\[\033[01;32m\]\h\[\033[00m\][\[\033[01;33m\]\t\[\033[00m\]]:\[\033[01;34m\]\w\[\033[00m\]$ '" >>/etc/profile
source /etc/profile

效果

linux_meihua2.png

3. 安装美化软件

代码:

1
2
git clone --depth=1 https://github.com/Bash-it/bash-it.git ~/.bash_it
~/.bash_it/install.sh

效果:

DoubleTime
linux_meihua3.jpg