![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Expert-to-Expert. Learn advanced UNIX, UNIX commands, Linux, Operating Systems, System Administration, Programming, Shell, Shell Scripts, Solaris, Linux, HP-UX, AIX, OS X, BSD. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| putty title window? | lwif | UNIX for Advanced & Expert Users | 3 | 01-28-2008 05:04 PM |
| Change putty title window? | akbar | UNIX for Advanced & Expert Users | 12 | 01-28-2008 01:38 PM |
| Change Terminal Title | here2learn | SUN Solaris | 8 | 11-21-2005 10:39 AM |
| window title..? | tintedwindow | UNIX for Dummies Questions & Answers | 1 | 08-24-2005 02:06 AM |
| Maximizing an xterm or aixterm window? | spieterman | Shell Programming and Scripting | 1 | 09-18-2002 02:14 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
This is what I use to change the window title (ksh):
Code:
# Change the Xwindow title to given argument(s); default arg is hostname
function namewin {
typeset TITLE=${@:-$(hostname|awk -F. '{print $1}')}
print "\033]0;${TITLE}\007\c"
} #END function namewin
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|