1
0
mirror of https://github.com/akelge/zsh synced 2025-07-09 23:49:06 +00:00
Files
zsh/zsh.d/zshfunctions/fancyTerm
2021-10-20 09:12:13 +02:00

12 lines
179 B
Plaintext

fancyterms=('xterm' 'rxvt' 'screen')
for t in $fancyterms; do
if [ "${TERM#${t}}" != "$TERM" ]; then
unset fancyterms
return 0
fi
done
unset fancyterms
return 1