Minor feature update

Added power line font path to enable glyphs from powerline font.
MOTD replaced with `neofetch --off | lolcat`
minor bug fixes
This commit is contained in:
Raum0x2A
2025-12-10 01:28:53 -07:00
parent 0ca6196297
commit 54ee48bc7c
10 changed files with 359 additions and 2 deletions

View File

@@ -116,6 +116,22 @@ fi
cp files/p10k-clean.zsh $usrhome/.config/zsh/p10k-clean.zsh
echo "done"
## install patched fonts for glyphs (powerline)
mkdir -p ~/.fonts && cp files/*.ttf ~/.fonts
if [ ! -f ~/.fonts/ ]; then
echo "Failed to install: MesloLGS\ NF\ Italic.ttf"
fi
if [ ! -f ~/.fonts/MesloLGS\ NF\ Bold\ Italic.ttf ]; then
echo "Failed to install: MesloLGS\ NF\ Bold\ Italic.ttf"
fi
if [ ! -f ~/.fonts/MesloLGS\ NF\ Bold.ttf ]; then
echo "Failed to install: MesloLGS\ NF\ Bold.ttf"
fi
if [ ! -f ~/.fonts/MesloLGS\ NF\ Regular.ttf ]; then
echo "Failed to install: MesloLGS\ NF\ Regular.ttf"
fi
# Change users shell to `ZSH`
if [ "$SHELL_TEST" != "zsh" ]; then
if hash chsh >/dev/null 2>&1; then