Linux – Get screen window title

command-line-interfacegnu-screenlinux

I'm looking for a way to get the current window title in GNU screen .
I have a script that use screen -X title something to change the window title when running and I would like to set it back to it's previous value at the end of the script.

Best Answer

"screen -X" attach a command to a specified screen session, it has no effect on the window title. Either your script uses an escape sequence to set the screen window title, or your screenrc does. Take notice that screen windows are unrelated to terminal (xterm, etc) windows.