Giving a name to a Terminal in "Xfce" desktop environment


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Giving a name to a Terminal in "Xfce" desktop environment
# 1  
Old 12-01-2010
Giving a name to a Terminal in "Xfce" desktop environment

Hi,

I work noramly with 3/4/5 Terminals (not xterms) open. In the different Terminal I set different tools (software).
Unfortunately I loose easily the overview of all these Terminals. Which setup is in which Terminal?
It would be nice to have a possibility to name Termianls. By the way I work in a desktop environment called "Xfce".

Does anybody know how to do it?

I face the same issue for workspaces. I am able to name them (I can see it in properties) but the name is not
displayed on workspace button.

Thank for your help.
Thomas
# 2  
Old 12-01-2010
What terminal software are you using? It's probably possible to name them with shell commands inside the terminal, many will change their titles given the right escape sequence. This should work with xterm-likes. (But not just xterms. Many are compatible with this sequence, up to and including windows PUTTY.)
Code:
$ echo -ne "\033]0;This Is My Window Title\007"

If they don't respond to xterm sequences, you'll have to tell us what your terminals are, not just what they aren't.
This User Gave Thanks to Corona688 For This Post:
# 3  
Old 12-03-2010
Thanks for your help.

After some trials I see that the window which is called "Terminal" is nothing else than xterm -title Terminal. This leads to folowing new question:


How do I modify the name of an open existing xterm window? I do not wish to open a new xterm.



Now, question is much more precise, I hope that answer is easier.

Thanks again for your help.
Thomas

Last edited by hooge789; 12-03-2010 at 06:33 AM..
# 4  
Old 12-03-2010
Quote:
Originally Posted by hooge789
How do I modify the name of an open existing xterm window? I do not wish to open a new xterm.
That is precisely what my first answer does:
Code:
echo -ne "\033]0;This Is My Window Title\007"

If this doesn't work, the commandline switch may be overriding it. You should fix whatever script runs it with that to not do that.
This User Gave Thanks to Corona688 For This Post:
# 5  
Old 12-04-2010
Thanks, Corona.

I tried your command in a xterm. It does not work.

What do you mean by command line switch please?

CU
Thomas
 
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. OS X (Apple)

"Locate" Shows Files but Not "LS" in Terminal

OS-X 10.8.4 Using locate I get these results: 10:~ mize$ locate /Users/mize/*.sh /Users/mize/Zend/workspaces/DefaultWorkspace/SLM/vendor/ZF2/bin/check-cs.sh /Users/mize/copy_ascii_upload.sh /Users/mize/copy_ascii_upload_to_server.sh /Users/mize/copy_form_functions_php_to_jpl.sh... (7 Replies)
Discussion started by: Gary Mize
7 Replies
Login or Register to Ask a Question