mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
26 lines
417 B
Bash
Executable File
26 lines
417 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
source "$DOTFILES/aliases.zsh"
|
|
source $HOME/.local/share/zsh/plugins/local/ascii_font/ascii_font.plugin.zsh
|
|
|
|
if [[ $(hostname) == 'spider.casraf.dev' || $(hostname) == 'spider' ]]; 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
|