2016年12月29日 星期四

終端機提示符號外掛Powerline

終端機的命令提示總是醜醜的,現在可以安裝powerline這個外掛,讓命令提示字元更加漂亮。下面介紹的修改Bash的命令提示字元


安裝在Fedora上面參考Add power to your terminal with powerline
  • 先安裝powerline,用指令:sudo dnf install powerline
  • 再加入下面設定到 ~/.bashrc裡面 
if [ -f `which powerline-daemon` ]; then
    powerline-daemon -q
    POWERLINE_BASH_CONTINUATION=1
    POWERLINE_BASH_SELECT=1
    . /usr/share/powerline/bash/powerline.sh
fi

如果是Ubuntu,則參考《Powerline:漂亮的 Vim 狀態列與 Bash Shell 命令提示字串外掛》,只有改命令提示字元:
  • 先安裝powerline,用指令:sudo apt-get install powerline
  • 再加入下面設定到 ~/.bashrc裡面
POWERLINE_SCRIPT=/usr/share/powerline/bindings/bash/powerline.sh
if [ -f $POWERLINE_SCRIPT ]; then
    source $POWERLINE_SCRIPT
fi

重新登入或是開啟新的終端機就可以看到效果了~
這個powerline外掛是用python寫的,除了Bash shell以外,還可以應用在vim, IPython, zsh, tmux, Awesome, Qtile上面,更多詳細的說明看Powerline document

_EOF_

沒有留言:

張貼留言