2009-09-23 00:18:15 +00:00
|
|
|
## fixme, i duplicated this in xterms - oops
|
2009-08-28 18:14:17 +00:00
|
|
|
function title {
|
|
|
|
if [[ $TERM == "screen" ]]; then
|
|
|
|
# Use these two for GNU Screen:
|
|
|
|
print -nR $'\033k'$1$'\033'\\\
|
|
|
|
|
|
|
|
print -nR $'\033]0;'$2$'\a'
|
2010-10-09 05:44:42 +00:00
|
|
|
elif [[ ($TERM =~ "^xterm") ]] || [[ ($TERM == "rxvt") ]]; then
|
2009-08-28 18:14:17 +00:00
|
|
|
# Use this one instead for XTerms:
|
|
|
|
print -nR $'\033]0;'$*$'\a'
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function precmd {
|
|
|
|
title zsh "$PWD"
|
|
|
|
}
|
|
|
|
|
|
|
|
function preexec {
|
|
|
|
emulate -L zsh
|
|
|
|
local -a cmd; cmd=(${(z)1})
|
|
|
|
title $cmd[1]:t "$cmd[2,-1]"
|
|
|
|
}
|
|
|
|
|
2009-08-31 22:00:15 +00:00
|
|
|
function zsh_stats() {
|
|
|
|
history | awk '{print $2}' | sort | uniq -c | sort -rn | head
|
2009-08-31 22:00:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function uninstall_oh_my_zsh() {
|
|
|
|
/bin/sh $ZSH/tools/uninstall.sh
|
2009-08-31 22:09:34 +00:00
|
|
|
}
|
|
|
|
|
2009-08-31 22:48:09 +00:00
|
|
|
function upgrade_oh_my_zsh() {
|
|
|
|
/bin/sh $ZSH/tools/upgrade.sh
|
|
|
|
}
|
|
|
|
|
2009-08-31 13:03:56 +00:00
|
|
|
function take() {
|
|
|
|
mkdir -p $1
|
|
|
|
cd $1
|
|
|
|
}
|
2010-12-24 22:20:57 +00:00
|
|
|
|
|
|
|
function extract() {
|
|
|
|
if [[ -f $1 ]]; then
|
|
|
|
case $1 in
|
|
|
|
*.tar.bz2) tar xvjf $1;;
|
|
|
|
*.tar.gz) tar xvzf $1;;
|
|
|
|
*.bz2) bunzip $1;;
|
|
|
|
*.rar) unrar $1;;
|
|
|
|
*.gz) gunzip $1;;
|
|
|
|
*.tar) tar xvf $1;;
|
|
|
|
*.tbz2) tar xvjf $1;;
|
|
|
|
*.tgz) tar xvzf $1;;
|
|
|
|
*.zip) unzip $1;;
|
|
|
|
*.Z) uncompress $1;;
|
|
|
|
*.7z) 7z x $1;;
|
|
|
|
*) echo "'$1' cannot be extracted via >extract<";;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
echo "'$1' is not a valid file"
|
|
|
|
fi
|
|
|
|
}
|