From 62bb6360f3c9c86cb3acaac5732914dba640eb62 Mon Sep 17 00:00:00 2001 From: pika Date: Mon, 9 Dec 2024 16:09:26 +0100 Subject: [PATCH] structural fixes --- .zshrc | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 7717ec9..5ba2c02 100644 --- a/.zshrc +++ b/.zshrc @@ -626,13 +626,26 @@ _environment(){ [ -s "/home/pika/.bun/_bun" ] && export BUN_INSTALL="$HOME/.bun" && export PATH="$BUN_INSTALL/bin:$PATH" } +_end(){ + if command_exists fastfetch; then + clear && + fastfetch + fi + + if command_exists cowsay; then + cowsay -f tux "$(uname -r)" + fi + + error_log +} + main(){ get_packager _init _environment _coding_ _alias - error_log + _end } if check_root; then