Re: xtermtitle

2000-04-05 Thread Chanop Silpa-Anan
OK try these! these are part of my .tcshrc on both Sun box and Debian # set prompt xterm title switch ( $TERM ) case xterm: case xterm-debian: case xterm-color: case rxvt: case dtterm: set prompt = %{\033]0;[EMAIL PROTECTED]: [EMAIL PROTECTED] breaksw default: set

Re: xtermtitle

2000-04-05 Thread Nikos Voutsinas
problem.(Solaris 7 sun4u) - Original Message - From: Paolo Pedaletti [EMAIL PROTECTED] To: Nikos Voutsinas [EMAIL PROTECTED] Cc: debian-user@lists.debian.org Sent: Tuesday, April 04, 2000 2:24 PM Subject: Re: xtermtitle Ciao Nikos Voutsinas, I would like (somehow) to change

xtermtitle

2000-04-04 Thread Nikos Voutsinas
Hello, I would like (somehow) to change dynamically xterm title according to the LOGNAME and HOSTNAME env. Anyone who can help? Thnak you in advance

Re: xtermtitle

2000-04-04 Thread Peter Weiss - Sun Germany ENS Engineer Mission Critical - Munich
Nikos Voutsinas [EMAIL PROTECTED] writes: Hello, I would like (somehow) to change dynamically xterm title according to the LOGNAME and HOSTNAME env. Anyone who can help? Hello I've got the following pieces of code in my .bashrc/ .bash_profile: setxtermtitle() { echo -ne \033];$*\007; }

Re: xtermtitle

2000-04-04 Thread Paolo Pedaletti
Ciao Nikos Voutsinas, I would like (somehow) to change dynamically xterm title according to the LOGNAME and HOSTNAME env. Anyone who can help? you can start from this function in /etc/profile: if [ -n $DISPLAY ]; then cd () { builtin cd $* echo -n -e \\033]0; $TERM: $PWD