- Refactor installer with Gum for a professional interactive experience - Create custom Nomarchy Plymouth theme with centered logo - Establish assets/branding directory for official logos and ASCII art - Update Fastfetch config with official ASCII art and declarative stats - Declaratively link branding assets via Home Manager
11 lines
225 B
Bash
Executable File
11 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Display the Nomarchy logo in the terminal using green color.
|
|
# Used by various presentation scripts to show branding.
|
|
|
|
clear
|
|
echo -e "\033[32m"
|
|
cat < ~/.config/nomarchy/branding/logo.txt
|
|
echo -e "\033[0m"
|
|
echo
|