Skip to content

Instantly share code, notes, and snippets.

@vdloc
Created June 29, 2021 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vdloc/8bbf895e8b8fe9f0a786912053abd09e to your computer and use it in GitHub Desktop.
Save vdloc/8bbf895e8b8fe9f0a786912053abd09e to your computer and use it in GitHub Desktop.
/etc/update-motd.d/ custom MOTD file
#!/bin/sh
echo "Welcome my lord, the most lonely person on the planet.\n"
echo "Here is your system information:\n"
/usr/bin/screenfetch
echo
echo "and your disk usage: \n"
export TERM=xterm; inxi -D
echo
echo "Finally, you may want to know the weather outside: \n"
ansiweather -l hanoi
echo
echo "Let make something great my majesty. Good lucks!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment