I want to rename the shell session. The obvious way is to right click on the tab and select "Rename Session...". But I want to do it in a script.
I am using KDE3.5.10, tcsh on Solaris OS. I tried below two methods, and both not working for me.
dcop $KONSOLE_DCOP_SESSION renameSession "NEW NAME"
(in this case, I got error saying "dcop" is not a recognized command)echo -en "\e]30;NEW NAME\a"
(this would just echo back the string enclosed).