mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-18 01:29:06 +00:00
26 lines
372 B
Bash
Executable File
26 lines
372 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
source "$DOTFILES/aliases.zsh"
|
|
source $DOTFILES/plugins/ascii_font/ascii_font.plugin.zsh
|
|
|
|
if [[ $(hostname) == 'spider.casraf.dev' ]]; then
|
|
text='@spider'
|
|
extra_echo=1
|
|
else
|
|
text='casraf'
|
|
fi
|
|
|
|
if [[ ! -z $extra_echo ]]; then
|
|
echo
|
|
echo
|
|
fi
|
|
|
|
ascii-text -W -B -c rainbow $text
|
|
|
|
if [[ ! -z $extra_echo ]]; then
|
|
echo
|
|
echo
|
|
fi
|
|
|
|
unset -f ascii-text
|