在别人博客里看到 Terminator 挺好用的,特别是和zsh搭配真是漂亮,这里总结下怎么弄吧。
安装 Terminator
sudo apt-get install terminator
- 利用 Debian 的重新配置命令选择默认终端:
sudo update-alternatives --config x-terminal-emulator
- 非ubuntu系统设置terminator快捷键
Setting -> Keyboard -> Shortcuts -> Custom Shortcuts -> add(+) Name : Terminal Command : /usr/bin/terminator Apply Click “Disable” press Ctrl + Alt + T
更换主题
/* 打开Terminator ,进行如下操作 */
Preferenvces -> General
Disable ‘Show titlebar’
Preferenvces -> Profiles -> Colors -> Foreground and Background -> Build-in schemes
Choose ‘Solarized dark’
安装zsh
sudo apt-get install zsh
- 设置当前用户使用zsh
chsh -s /bin/zsh
安装 on my zsh
- 自动安装:(推荐)
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
- 手动安装:
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
安装powerline字体
git clone https://github.com/powerline/fonts
cd fonts
./install.sh
然后在终端中使用powerline字体
编辑: ~/.zshrc
- 增加自己的用户名:
DEFAULT_USER="Shank"
PS:上面 Shank 替换成你当前的用户名,用whoami查看你的用户名
- 修改主题:
ZSH_THEME="agnoster"
- 启用几个功能:
COMPLETION_WAITING_DOTS="true"
或者用以下简单粗暴的方式屏蔽zsh中的用户名
cd ~/.oh-my-zsh/themes
sudo vim 当前主题名称
找到最下面对build_prompt
的定义,把prompt_context
用#
注释掉即可
来自2018/10/29:“以前的自己 Markdown 写得这么烂还敢贴出来。”