1
0
mirror of https://github.com/akelge/zsh synced 2025-07-01 20:29:13 +00:00
Files
zsh/zsh.d/zshfunctions/fancyTerm
Andrea Mistrali 0d61c334d7 migration
2015-03-13 16:03:57 +01:00

14 lines
208 B
Bash

fancyterms=('xterm' 'rxvt' 'screen')
for t in $fancyterms; do
if [ "${TERM#${t}}" != "$TERM" ]; then
unset fancyterms
return 0
fi
done
unset fancyterms
return 1
# vim: set ts=4 sw=4 tw=0 ft=zsh :