Skip to content

Instantly share code, notes, and snippets.

@johnschult
Forked from piksel/raspi-motd.sh
Created December 8, 2016 20:34
Show Gist options
  • Save johnschult/9081c82b45bcaf5f2adc76ac12ad26bf to your computer and use it in GitHub Desktop.
Save johnschult/9081c82b45bcaf5f2adc76ac12ad26bf to your computer and use it in GitHub Desktop.
Script for setting a nice raspberry pi logo as MOTD on debian.
#!/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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment