Created
June 30, 2012 12:15
-
-
Save piksel/3023588 to your computer and use it in GitHub Desktop.
Script for setting a nice raspberry pi logo as MOTD on debian.
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/bash | |
logo="$(tput setaf 2) | |
.~~. .~~. | |
'. \ ' ' / .'$(tput setaf 1) | |
.~ .~~~..~. $(tput sgr0) _ _ $(tput setaf 1) | |
: .~.'~'.~. : $(tput sgr0) ___ ___ ___ ___| |_ ___ ___ ___ _ _ ___|_|$(tput setaf 1) | |
~ ( ) ( ) ~ $(tput sgr0) | _| .'|_ -| . | . | -_| _| _| | | | . | |$(tput setaf 1) | |
( : '~'.~.'~' : ) $(tput sgr0) |_| |__,|___| _|___|___|_| |_| |_ | | _|_|$(tput setaf 1) | |
~ .~ ( ) ~. ~ $(tput sgr0) |_| |___| |_| $(tput setaf 1) | |
( : '~' : ) | |
'~ .~~~. ~' | |
'~' | |
$(tput sgr0)" | |
if [ `whoami` != "root" ]; then | |
echo "$logo" | |
echo "Run as root to update your motd." | |
else | |
echo "$logo" > /etc/motd.tail | |
/etc/init.d/bootlogs | |
echo "Updated MOTD. Log in to see the new logo." | |
fi |
There is a utility called toilet
available via apt which lets you create coloured banners. The trick is to get toilet to export its output to ansi (much like how in this example the output of tput is). toilet -f big "text in font" --filter gay --export ansi > motdfile
There is a utility called
toilet
available via apt which lets you create coloured banners. The trick is to get toilet to export its output to ansi (much like how in this example the output of tput is).toilet -f big "text in font" --filter gay --export ansi > motdfile
lolcat is nice approach I guess
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you xvillo !