better ascii logos

This commit is contained in:
Dominik Moritz Roth 2025-08-25 11:07:39 +02:00
parent 0809224963
commit b582bb9574
3 changed files with 31 additions and 0 deletions

View File

@ -15,6 +15,9 @@ autoload -U +X bashcompinit && bashcompinit
export EDITOR='nvim' export EDITOR='nvim'
# nullpoint custom fastfetch
alias fastfetch='fastfetch --file-raw /etc/nullpoint-logo'
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
[ -f /etc/profile.d/vte.sh ] && source /etc/profile.d/vte.sh [ -f /etc/profile.d/vte.sh ] && source /etc/profile.d/vte.sh
fi fi

View File

@ -5,6 +5,7 @@
set -euo pipefail set -euo pipefail
BANNER=$(cat << "EOF" BANNER=$(cat << "EOF"
__.,,.__
:^7J5GB##&&##GPY?~: :^7J5GB##&&##GPY?~:
^75B&@@@@@@&&&@@@@@@@#GJ~: ^75B&@@@@@@&&&@@@@@@@#GJ~:
5&@@@&B5?7~^^^^^~!7YP#@@@@#! 5&@@@&B5?7~^^^^^~!7YP#@@@@#!

View File

@ -2,6 +2,7 @@
set -euo pipefail set -euo pipefail
BANNER=$(cat << "EOF" BANNER=$(cat << "EOF"
__.,,.__
:^7J5GB##&&##GPY?~: :^7J5GB##&&##GPY?~:
^75B&@@@@@@&&&@@@@@@@#GJ~: ^75B&@@@@@@&&&@@@@@@@#GJ~:
5&@@@&B5?7~^^^^^~!7YP#@@@@#! 5&@@@&B5?7~^^^^^~!7YP#@@@@#!
@ -178,6 +179,32 @@ echo "[+] Installing lsd, bat, and fastfetch..."
# Try to install fastfetch from repos first # Try to install fastfetch from repos first
dnf install -y fastfetch || echo "fastfetch not available in repos, skipping" dnf install -y fastfetch || echo "fastfetch not available in repos, skipping"
# Create nullpoint logo file for fastfetch
echo "[+] Creating nullpoint logo file..."
cat > /etc/nullpoint-logo << 'EOF'
__.,,.__
:^7J5GB##&&##GPY?~:
^75B&@@@@@@&&&@@@@@@@#GJ~:
5&@@@&B5?7~^^^^^~!7YP#@@@@#!
Y##P7^ :~JB#B!
:: :
7PP?: :^~!!~^: :?PP7
:B@@B: !5B&@@@@&B5! :#@@B:
:!!: ^G@@@&BPPB@@@@G^ :!!:
:B@@@5^ ^5@@@B:
:7J7: !@@@# :&@@@~ :?J7:
J@@@5 :#@@@Y: :Y@@@B: 5@@@J
!@@@&^ ~B@@@&G55G&@@@B~ ~&@@@~
5@@@G: :7P#@@@@@@#P7: :B@@@Y
:P@@@B~ :~!77!~: ~B@@@P
Y@@@&Y^ ^5@@@@J
!G@@@&P7^ ^7P&@@@G~
!P&@@@&B? :: ?B&@@@&P!
^75#&&Y :P&&5: 5&&B57^
:^^ :P&&5: ^^:
^^
EOF
# Install user-specific tools for the user account # Install user-specific tools for the user account
echo "[+] Installing user-specific tools for ${ALMA_USER}..." echo "[+] Installing user-specific tools for ${ALMA_USER}..."
su - ${ALMA_USER} -c 'curl -fsSL https://claude.ai/install.sh | bash' || echo "WARNING: Claude Code installation failed" su - ${ALMA_USER} -c 'curl -fsSL https://claude.ai/install.sh | bash' || echo "WARNING: Claude Code installation failed"