Setting terminal title is easy with echo -e "\e]0;some title\007"
. Works with pretty much every terminal program.
What I want is to set terminal title when some program starts - and restore old one when it finishes. Is this possible?
Setting terminal title is easy with echo -e "\e]0;some title\007"
. Works with pretty much every terminal program.
What I want is to set terminal title when some program starts - and restore old one when it finishes. Is this possible?
There are some terminal programs that supporting it (xterm has compile time options for that, as mentioned by RWS), but most terminal programs simply lack such feature, including in particular Terminal.app.
On xterm, the terminal control sequences 22 and 23 work fine, as in
#!/bin/sh
/bin/echo -ne '\033[22;0t' # Save title on stack
/bin/echo -ne "\033]0;$(date)\007"
sleep 1
/bin/echo -ne '\033[23;0t' # Restore title from stack
It looks like this isn't supported in the Mac OS X Terminal.App though.
My solution was to set the window title during my script, then unset the window title when I completed. Unsetting the title reverted to the original value. Specifically, I did the following:
# Set the terminal title
printf "\e]2;%s\a" "running my script"
# Do whatever processing is required.
...
# Restore terminal title
printf "\e]2;\a"
There are some terminal programs that supporting it (xterm has compile time options for that, as mentioned by RWS), but most terminal programs simply lack such feature, including in particular Terminal.app.
title=`osascript -e 'tell application "Terminal" to get name of front window'`
and then echo $title
works just as expected. Not too nice to need AppleScript though. –
Ruination Yes, that is possible indeed. See a xterm
reference manual (like this for example) and wander your way through it. xterm
even has a build in stack for this, so you don't have to store the title manually.
© 2022 - 2024 — McMap. All rights reserved.
title=`osascript -e 'tell application "Terminal" to get name of front window'`
and thenecho $title
works just as expected. Not too nice to need AppleScript though. – Ruination