layout, date, last, tags, title, description, commentIssueId
layout
date
last
tags
title
description
commentIssueId
paper
14 January 2014
14 January 2014
zshrc
configuration
linux
About zshrc
It is first paper in my blog (I think I need something here for tests =)). There are many similar articles, and I'll not be an exception. I just want to show my <code>.zshrc</code> and explain what it does and why it is needed. Also any comments or additions are welcome. It is a translated paper from Russian (<a href="http://archlinux.org.ru/forum/topic/12752/">original</a>).
Set history file and number of commands in cache of the current session and in the history file:
# history
HISTFILE=~/.zsh_history
HISTSIZE=500000
SAVEHIST=500000
I can not remember all Ctrl+ combinations so I bind keys to its default usages:
# bindkeys
bindkey '^[[A' up-line-or-search # up arrow for back-history-search
bindkey '^[[B' down-line-or-search # down arrow for fwd-history-search
bindkey '\e[1~' beginning-of-line # home
bindkey '\e[2~' overwrite-mode # insert
bindkey '\e[3~' delete-char # del
bindkey '\e[4~' end-of-line # end
bindkey '\e[5~' up-line-or-history # page-up
bindkey '\e[6~' down-line-or-history # page-down
But in this case Up/Down arrows are used to navigate through the history based on already entered part of a command. And PgUp/PgDownwill ignore already entered part of a command.
Full command autocomplete will be enabled. insert-tab false will enable autocomplete for non-entered commands. max-errors sets maximum number of errors that could be corrected.
In first line highlighting is turned on. Next main, brackets and pattern highlighting are turned on. Patterns are set below (rm -rf \* in the example). Also root and cursor highlighting may be turned on. Colors syntax is understandable, fg is font color, bg is background color.
$PROMPT and $RPROMPT
The general idea is the use single .zshrc for root and normal user:
fg is font color, bg is background color. \_bold and \_no_bold regulate the tint. Commands should be in %{ ... %} so they do not appear. Avaible colors are:
black
red
green
yellow
blue
magenta
cyan
white
Avaible variables are:
%n - the username
%m - the computer's hostname (truncated to the first period)
%M - the computer's hostname
%l - the current tty
%? - the return code of the last-run application.
%# - the prompt based on user privileges (# for root and % for the rest)
%T - system time(HH:MM)
%* - system time(HH:MM:SS)
%D - system date(YY-MM-DD)
%d - the current working directory
%~ - the same as %d but if in $HOME, this will be replaced by ~
%1/ - the same as %d but only last directory
RPROMPT (acpi package is necessary):
precmd () {
# battery charge
function batcharge {
bat_perc=`acpi | awk {'print $4;'} | sed -e "s/\s//" -e "s/%.*//"`
if $bat_perc < 15 ; then
col="%{$fg_bold[red]%}"
elif $bat_perc < 50 ; then
col="%{$fg_bold[yellow]%}"
else
col="%{$fg_bold[green]%}"
fi
echo "%{$fg_bold[white]%}["$col$bat_perc"%{$fg_bold[white]%}%%]%{$reset_color%}"
}
# last command
returncode="%(?.%{$fg[green]%}.%{$fg[red]%})%?%{$resetcolor%}"
RPROMPT="%{$fg_bold[white]%}[%{$reset_color%}\
%{$fg_bold[cyan]%}%T%{$reset_color%}\
%{$fg_bold[white]%}] %{$reset_color%}"\
$(batcharge)\
"%{$fg_bold[white]%}[%{$reset_color%}"\
$returncode\
"%{$fg_bold[white]%}]%{$reset_color%}"
My RPROMPT shows current time, battery change and last returned code. precmd() is necessary for automatic updating. The construct $(if.true.false) is conditional statement in zsh.
Aliases
Copy only those aliases that you need. If any alias uses application that is not installed it will leads to fail of loading of configuration file.
## alias
\# colored grep
alias grep='grep --colour=auto'
\# change top to htop
alias top='show_which top && htop'
\# chromium with different proxy servers (i2p and tor included)
alias chrommsu='show_which chrommsu && chromium --proxy-server=cache.msu:3128'
alias chromtor='show_which chromtor && chromium --proxy-server="socks://localhost:9050" --incognito'
alias chromi2p='show_which chromi2p && chromium --proxy-server="http=127.0.0.1:4444;https=127.0.0.1:4445" --incognito'
\# human-readable df and du
alias df='show_which df && df -k --print-type --human-readable'
alias du='show_which du && du -k --total --human-readable'
\# change less and zless to vimpager
alias less='vimpager'
alias zless='vimpager'
\# more interactive rm
alias rm='show_which rm && rm -I'
alias ls='show_which ls && ls --color=auto'
alias ll='show_which ll && ls --group-directories-first -l --human-readable'
alias lr='show_which lr && ls --recursive'
alias la='show_which la && ll --almost-all'
alias lx='show_which lx && ll -X --ignore-backups'
alias lz='show_which lz && ll -S --reverse'
alias lt='show_which lt && ll -t --reverse'
alias lm='show_which lm && la | more'
Here are aliases to quick file view from console (just type a file name!):
# alias -s
alias -s {avi,mpeg,mpg,mov,m2v,mkv}=mpv
alias -s {mp3,flac}=qmmp
alias -s {odt,doc,xls,ppt,docx,xlsx,pptx,csv}=libreoffice
alias -s {pdf}=okular
autoload -U pick-web-browser
alias -s {html,htm}=opera
Here are "sudo" aliases:
# sudo alias
if ; then
alias fat32mnt='show_which fat32mnt && mount -t vfat -o codepage=866,iocharset=utf8,umask=000'
alias synctime='show_which synctime && { ntpd -qg; hwclock -w; date; }'
else
alias fat32mnt='show_which fat32mnt && sudo mount -t vfat -o codepage=866,iocharset=utf8,umask=000'
alias umount='show_which umount && sudo umount'
alias mount='show_which mount && sudo mount'
alias netctl='show_which netctl && sudo netctl'
alias synctime='show_which synctime && { sudo ntpd -qg; sudo hwclock -w; date; }'
alias wifi-menu='show_which wifi-menu && sudo wifi-menu'
alias dhcpcd='show_which dhcpcd && sudo dhcpcd'
alias journalctl='show_which journalctl && sudo journalctl'
alias systemctl='show_which systemctl && sudo systemctl'
alias modprobe='show_which modprobe && sudo modprobe'
alias rmmod='show_which rmmod && sudo rmmod'
alias staging-i686-build='show_which staging-i686-build && sudo staging-i686-build'
alias staging-x86_64-build='show_which staging-x86_64-build && sudo staging-x86_64-build'
fi
Here are global aliases. If they are enable the command cat foo g bar will be equivalent the command cat foo | grep bar:
# global alias
alias -g g="| grep"
alias -g l="| less"
alias -g t="| tail"
alias -g h="| head"
alias -g dn="&> /dev/null &"
Functions
Here is a special function for xrandr:
# function to contorl xrandr
\# EXAMPLE: projctl 1024x768
projctl () {
if [ $1 ] ; then
if [ $1 = "-h" ]; then
echo "Usage: projctl [ off/resolution ]"
return
fi
if [ $1 = "off" ]; then
echo "Disable VGA1"
xrandr --output VGA1 --off --output LVDS1 --mode 1366x768
else
echo "Using resolution: $1"
xrandr --output VGA1 --mode $1 --output LVDS1 --mode $1
fi
else
echo "Using default resolution"
xrandr --output VGA1 --mode 1366x768 --output LVDS1 --mode 1366x768
fi
}
Unfortunately I can not remember tar flags thus I use special functions:
# function to extract archives
\# EXAMPLE: unpack file
unpack () {
if -f $1 ; then
case $1 in
\*.tar.bz2) tar xjfv $1 ;;
\*.tar.gz) tar xzfv $1 ;;
\*.tar.xz) tar xvJf $1 ;;
\*.bz2) bunzip2 $1 ;;
\*.gz) gunzip $1 ;;
\*.rar) unrar x $1 ;;
\*.tar) tar xf $1 ;;
\*.tbz) tar xjvf $1 ;;
\*.tbz2) tar xjf $1 ;;
\*.tgz) tar xzf $1 ;;
\*.zip) unzip $1 ;;
\*.Z) uncompress $1 ;;
\*.7z) 7z x $1 ;;
\*) echo "I don't know how to extract '$1'" ;;
esac
else
case $1 in
\*help) echo "Usage: unpack ARCHIVE_NAME" ;;
\*) echo "'$1' is not a valid file" ;;
esac
fi
}
\# function to create archives
\# EXAMPLE: pack tar file
pack () {
if [ $1 ]; then
case $1 in
tar.bz2) tar -cjvf $2.tar.bz2 $2 ;;
tar.gz) tar -czvf $2.tar.bz2 $2 ;;
tar.xz) tar -cf - $2 | xz -9 -c - > $2.tar.xz ;;
bz2) bzip $2 ;;
gz) gzip -c -9 -n $2 > $2.gz ;;
tar) tar cpvf $2.tar $2 ;;
tbz) tar cjvf $2.tar.bz2 $2 ;;
tgz) tar czvf $2.tar.gz $2 ;;
zip) zip -r $2.zip $2 ;;
7z) 7z a $2.7z $2 ;;
\*help) echo "Usage: pack TYPE FILES" ;;
\*) echo "'$1' cannot be packed via pack()" ;;
esac
else
echo "'$1' is not a valid file"
fi
}
Here is a special function for su:
su () {
checksu=0
for flags in $*; do
if ; then
checksu=1
fi
done
if ; then
echo "Use 'su -', Luke"
/usr/bin/su - $\*
else
/usr/bin/su $\*
fi
}
Functions with automatic rehash after installing/removing packages are: