Files
dotfiles/_plugins/motd/10-logo
2026-03-30 14:49:30 +03:00

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