配置 Ubuntu 終端字型顏色
阿新 • • 發佈:2019-01-06
PS:不明之處,請君留言,以期共同進步!
Ubuntu 自帶的終端字型顏色不具有很好的區分度,字元多時看著費勁,時間一長眼花繚亂,好在可以自定義配置。在使用者的家目錄下有一個隱藏檔案叫 .bashrc ,無論是普通使用者還是 root 使用者,都有各自的 .bashrc 檔案,所以要分別進行配置。
具體操作如下:
用 vi 編輯器開啟 .bashrc 檔案找到 PS1 變數:
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[ \033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
更改 PS1 變數的值:
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\e[1;34;1m\][\[\e[1;32;1m\]\u\[\e[1;31;1m\]@\[\e[1;32;1m\]\h\[\e[1;31;1m\]:\[\e[1;33;1m\]\w\[\e[1;34;1m\]] \[\e[1;32;1m\] \$ \[\e[0m\]'
else
PS1='${debian_chroot:+($debian_chroot)}\[\e[1;34;1m\][\[\e[1;32;1m\]\u\[\e[1;31;1m\]@\[\e[1;32;1m\]\h\[\e[1;31;1m\]:\[\e[1;33;1m\]\w\[\e[1;34;1m\]] \[\e[1;32;1m\]\$ \[\e[0m\]'
fi
修改完成後儲存退出,再執行 source .bashrc 使配置生效,如下:
這是在 Ubuntu server 上配置後的效果,看上去並不理想,但是在 Ubuntu Desktop 上的效果非常棒。 下面補充一張在 Ubuntu Desktop 上的效果圖。