Created
February 20, 2026 16:24
-
-
Save fjcaetano/465e2c85295d239fe57890abdbab02a0 to your computer and use it in GitHub Desktop.
A colorful RaspberryPi logo for your terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Raspberry Pi logo (green leaves, red body) | |
| printf '%b' "\ | |
| \e[32m⠀⢀⣠⣤⣶⣶⣶⣤⣄⠀⠀⣀⣤⣶⣶⣶⣤⣄⡀\e[0m | |
| \e[32m⠀⢸⣿⠁⠀⠀⠀⠀⠙⢷⡾⠋⠀⠀⠀⠀⠈⣿⡇⠀\e[0m | |
| \e[32m⠀⠘⢿⡆⠀⠀⠀⠢⣄⣼⣧⣠⠔⠀⠀⠀⢰⡿⠃⠀\e[0m | |
| \e[32m⠀⠀⠈⠻⣧⣤⣀⣤⣾⣿⣿⣷⣤⣀⣤⣼⠟⠁⠀⠀\e[0m | |
| \e[31m⠀⠀⣰⡾⠋⠉⣩⣟⠁⠀⠀⠈⣻⣍⠉⠙⢷⣆⠀⠀\e[0m | |
| \e[31m⠀⢀⣿⣀⣤⡾⠛⠛⠷⣶⣶⠾⠛⠛⢷⣤⣀⣿⡀⠀\e[0m | |
| \e[31m⣰⡟⠉⣿⡏⠀⠀⠀⠀⢹⡏⠀⠀⠀⠀⢹⣿⠉⢻⣆\e[0m | |
| \e[31m⣿⡇⠀⣿⣇⠀⠀⠀⣠⣿⣿⣄⠀⠀⠀⣸⣿⠀⢸⣿\e[0m | |
| \e[31m⠙⣷⣼⠟⠻⣿⣿⡿⠋⠁⠈⠙⢿⣿⣿⠟⠻⣧⣾⠋\e[0m | |
| \e[31m⠀⢸⣿⠀⠀⠈⢿⡇⠀⠀⠀⠀⢸⡿⠁⠀⠀⣿⡇⠀\e[0m | |
| \e[31m⠀⠀⠻⣧⣀⣀⣸⣿⣶⣤⣤⣶⣿⣇⣀⣀⣼⠟⠀⠀\e[0m | |
| \e[31m⠀⠀⠀⠈⠛⢿⣿⣿⡀⠀⠀⢀⣿⣿⡿⠛⠁⠀⠀⠀\e[0m | |
| \e[31m⠀⠀⠀⠀⠀⠀⠀⠙⠻⠿⠿⠟⠋⠀⠀⠀⠀⠀⠀⠀\e[0m | |
| \033[90m | |
| Authorized access only. | |
| Raspberry Pi • Hardened SSH | |
| \033[0m | |
| " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment