Depois de instalar o zsh (
página 2) e testá-lo (
página 3), existe um configurador para o zsh, chamado
oh-my-zsh, feito pelo programador
Francês Robby Russel:
C.
Copie seu arquivo de configuração do zsh para protegê-lo:
cd /
$ cd ~/
$ sudo cp ~/.zshrc ~/.zshrc.original
D.
Instalação em distribuições em geral:
1. Instalação automática:
A mais fácil e recomendada pelo desenvolvedor, e baseada em baixar o pacote oh-my-zsh com o
cURL ou o
Wget.
Se quiser, pode experimentar com outros gerenciadores de download, como o
Axel, Prozilla e o Aria2.
Execute um dos comandos abaixo:
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
$ wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
2. Instalação pelo
Git:
Se preferir, instale em sua distribuição alguns controladores de versão (Git, CVS e SVN/Subversion), depois baixe e clone o oh-my-zsh, usando Git:
sudo git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
$ sudo cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zsh
E. Para Sabayon e Gentoo, ele já está instalado (veja
página 2).
F. Uso.
Com esse configurador, o oh-my-zsh, você pode ter vários temas de cores e aspectos do terminal, plugins com suporte a Git, linguagens de programação, multimídia, etc.
Para usá-lo, execute estes comandos:
cd /
$ cd ~/
$ cd .oh-my-zsh
$ sudo sh oh-my-zsh.sh
Isso ativa o
oh-my-zsh.
Agora, edite o seu arquivo "~/.zshrc", para temas, plugins, etc. Se quiser, pode se basear no meu:
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="candy"
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"
# Comment this out to disable bi-weekly auto-update checks
# DISABLE_AUTO_UPDATE="true"
# Uncomment to change how often before auto-updates occur? (in days)
# export UPDATE_ZSH_DAYS=13
# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want to disable command autocorrection
# DISABLE_CORRECTION="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion
# COMPLETION_WAITING_DOTS="true"
# Uncomment following line if you want to disable marking untracked files under
# VCS as dirty. This makes repository status check for large repositories much,
# much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(git)
source $ZSH/oh-my-zsh.sh
# Customize to your needs...
# export PATH=$PATH:/usr/local/bin:/usr/bin:/bin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.7.3:/opt/sublime-text2:/opt/nvidia-cg-toolkit/bin:/usr/games/bin:/opt/cuda/bin:/opt/cuda/libnvvp
# Adaptado a partir de meu Bash:
#Welcome msg
echo ' _ '
echo ' *v* *** BEM VINDO AO '`hostname`' ***'
echo ' /(_)\ '
echo ' ^ ^ ' `date`
echo ' '
#Sistema
echo ' '
echo ' *** Sistema: '`uname -a`' ***'
echo ' '
echo ' *** Usuario: '`who -m`' ***'
echo ' _ '
# Checa a Hora do Brasil, lista servidores NTP e ajusta Teclado:
echo ' _ '
echo ' *** Hora do Brasil e Servidores: ***'
echo ' _ '
ntpq -p
echo ' _ '
setxkbmap -model abnt2 -layout br -variant abnt2
echo ' _ '
echo '*** PRONTO, OK, EIS SEU TERMINAL, DIGITE SEU COMANDO: ***'
date
# Teste de Shell, default no Sabayon:
# Test for an interactive shell. There is no need to set anything
# past this point for scp and rcp, and it's important to refrain from
# outputting anything in those cases.
if [[ $- != *i* ]] ; then
# Shell is non-interactive. Be done now!
return
fi
# Atalhos, Alias, Para Sabayon, mude para sua Distro
alias lsa='ls -a'
alias lsc='ls -agotpUXh'
alias lst='ls -a -X'
alias terminal='mrxvt'
alias arquivos='nautilus'
alias xinit='xinit &'
alias desliga='sudo init 0'
alias reinicia='sudo reboot'
alias repositorios='sudo equo up'
alias autorepos='sudo equo up && sudo emerge --sync && sudo layman -S'
alias vaiatualizar='sudo equo u --pretend'
alias atualizar='sudo equo u'
alias editar='gksu gedit'
alias internet='/home/albfneto/Desktop/PACOTES/firefox/firefox/firefox %U'
Detalhes de como editá-lo, temas, etc:
Este meu arquivo usa o tema Candy, gerando um terminal com este aspecto:
G. Protegendo a configuração:
Neste ponto, você pode querer usar o oh-my-zsh, mas pode desejar voltar depois ao zsh "clássico", para isso, copie o seu arquivo "/home/usuário/.zshrc" para poder trocá-lo:
cd /
$ cd ~/
$ sudo cp .zshrc zshrc.oh-my-zsh
Para trocar novamente ao zsh clássico (
página 3), execute estes comandos:
cd /
$ cd ~/
$ sudo mv -f .zshrc.classico .zshrc