答案1
它其实是一个zsh
壳
使用 apt-get 安装
sudo apt-get install zsh
下载主题
wget -O ~/.zshrc https://raw.githubusercontent.com/grml/grml-etc-core/master/etc/zsh/zshrc
更改默认 shell(请注意,这样做会导致您丢失别名)
chsh -s /bin/zsh
别名更新
如果你的文件夹中有单独的文件,则将其附加到文件夹中文件home/<user_name>
的末尾.zshrc
home/<user_name>
if [ -f ~/.aliases_file ]; then
. ~/.aliases_file
fi