Difference between revisions of "banner"

From Noah.org
Jump to navigationJump to search
Line 1: Line 1:
 
[[category:Engineering]]
 
[[category:Engineering]]
  
This script is my version of the classic `banner` program.
+
== Banner ==
  
I like to have a nice big banner display the machine name when I login.
+
This script is my version of the classic `banner` program. This is written in Python. It supports font rotation; XPM Pixmap output; two font sizes. It can read text from stdin or from the command-line.
I use the following script to create a banner that I put in /etc/motd.
 
  
This script can also create text icons and labels for X-Windows.
+
=== MOTD banner ===
Using the -x option will tell the script to output in xpm format.
 
Put the output in a file in /usr/share/pixmaps/ and you can use
 
the icon anywhere in X-Windows.
 
  
I put this in my ~/bin directory. This is part of my standard [[Dotfiles]] distribution.
+
I like to have a nice big banner display the machine name when I login. I use the following script to create a banner that I put in /etc/motd.
 +
<pre>
 +
# banner $HOSTNAME > /etc/motd
 +
</pre>
 +
 
 +
=== Simple XPM pixmaps ===
 +
 
 +
This script can also create text icons and labels for X-Windows. Using the -x option will tell the script to output in xpm format. Put the output in a file in /usr/share/pixmaps/ and you can use the icon anywhere in X-Windows.
 +
 
 +
<pre>
 +
# banner -x -g 32x32 www noah org > /usr/share/pixmaps/www.noah.org.xpm
 +
</pre>
 +
 
 +
=== Install ===
 +
I put this script in my ~/bin directory. This is part of my standard [[Dotfiles]] distribution.
  
 
<include svncat src="file:///home/svn/src/dotfiles/bin/banner" highlight="python" />
 
<include svncat src="file:///home/svn/src/dotfiles/bin/banner" highlight="python" />

Revision as of 12:06, 12 October 2007


This script is my version of the classic `banner` program. This is written in Python. It supports font rotation; XPM Pixmap output; two font sizes. It can read text from stdin or from the command-line.

MOTD banner

I like to have a nice big banner display the machine name when I login. I use the following script to create a banner that I put in /etc/motd.

# banner $HOSTNAME > /etc/motd

Simple XPM pixmaps

This script can also create text icons and labels for X-Windows. Using the -x option will tell the script to output in xpm format. Put the output in a file in /usr/share/pixmaps/ and you can use the icon anywhere in X-Windows.

# banner -x -g 32x32 www noah org > /usr/share/pixmaps/www.noah.org.xpm

Install

I put this script in my ~/bin directory. This is part of my standard Dotfiles distribution.

<include svncat src="file:///home/svn/src/dotfiles/bin/banner" highlight="python" />