Operating systems

Putting Text in Window Title Bars

October 6, 2009, 06:59 PM — 

How you go about adding a label to a terminal window's title bar depends on your shell. Let's look at how this would work on both Solaris and Linux systems when you're using bash or ksh.

The first thing you need to do, of course, is identify the information that you want to have displayed in the title bar. If you want the same type of information displayed from system to system, you can set this up in your dot files, picking the identifying information from the environment.

Let's say you want the system name, plus some information about the operating system and its version to be displayed. You could snag this information from the output of the uname command like so:

TBAR="`uname -n` - `uname -a | cut -d' ' -f1,3`"

Here, we have used the uname -n command to get the hostname and plucked two pieces of text (OS and version) from the output of the uname -a command, adding a hyphen after the hostname. The $TBAR variable thus has this kind of information in it:

boson - SunOS 5.10

Now, all you have to do is stuff this information into the title bar. You can do that with this odd-looking command:

echo -ne "\033] $TBAR \007"

Putting Text in Window Title Bars

Adding your username is helpful if you log in as more than one user -- especially if one of
those users is root. You can easily add your username to the title bar like this:

$ TBAR="`uname -n` - `uname -a | cut -d' ' -f1,3` - `whoami`"
$ echo -ne "\033] $TBAR \007"

You can put your current directory into the title bar like this (but it won't change when you cd to another directory unless you issue the command again):

echo -n -e "\033] `pwd` \007"

You can also create a simple script for users to put the text of their choice into the title bar:

#!/bin/bash
# tbar: put text in title bar

echo -ne "\033]; "$*" \007"

If you put this in a directory that's on the users' paths, they can type "tbar `pwd`" or "tbar `uname -a`" or whatever else they want to remind them what the window is being used to accomplish.

Sign up for ITworld's Daily newsletter
Follow ITworld on Twitter @IT_world

I like it!
Post a comment
The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
peer-to-peer

Esther Schindler
If the comments are ugly, the code is ugly

claird
SVG a graphics format for 21st century

pasmith
Take Chrome OS for a test spin

Sandra Henry-Stocker
Solaris Tip: Have Your Files Changed Since Installation?

sjvn
64-bits of protection?

jfruh
Android fragments vs. the iPhone monolith

mikelgan
What Gizmodo missed about the Pro WX Wireless USB disk drive

 

Sidekick: The Good News & the Bad News
Either way you look at it Microsoft Data Center management did not follow standards or best practices in this failure. In which case it makes me wonder more about the outsourcing of corporate data much less personal data.
- mburton325

Join the conversation here

The Daily Tip

The Daily TipQuick, practical advice for IT pros. Made fresh daily.

Hot tips:

Want to cash in on your IT savvy? Send your tip to tips@itworld.com. If we post it, we'll send you a $25 Amazon e-gift card.

Newsletters

Subscribe to ITWORLD TODAY and receive the latest IT news and analysis.

I would like to receive offers via email from ITworld partners.
By clicking submit you agree to the terms and conditions outlined in ITworld's privacy policy.
Featured Sponsor

AISO founders envisioned a Web hosting company that was environmentally friendly. While the company employed energy-efficient innovations like solar panels, its infrastructure produced unacceptable power and cooling requirements. Find out how AISO leveraged AMD technology to overcome their challenge in this case study white paper.

In this whitepaper, Scalar explores the opportunity to change the landscape with respect to mission critical databases built around Oracle. Leveraging technologies such as Linux, high-end commodity processing power and Oracle RAC technology to architect, design, build and maintain database infrastructure that delivers maximum availability, reliability and performance at a fraction of traditional cost.

On a typical day, weather.com, the Web site for The Weather Channel in Atlanta, serves up between 15 million and 20 million page views. But in September 2004, when back-to-back hurricanes ransacked Florida, the peak traffic on one day more than tripled: over 70 million page views by more than 7 million unique visitors. Read the full success story now.

Marketplace