LINUX 提示符美化
1. 美化一
代码:
1 | RED='\[\e[31;1m\]' |
效果
2. 美化二
代码
1 | 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 |
效果
3. 安装美化软件
代码:
1 | git clone --depth=1 https://github.com/Bash-it/bash-it.git ~/.bash_it |
效果:
DoubleTime