I use screen
in centos, but the title of window not saved after call to any command.
Stack:
# Create a screen
$ screen
# Create a new window in screen
# Ctrl + a: c
# Set title of window
# Ctrl + a: A
# Write a "Some" window title (See screenshot #1)
# Execute command "ls"
$ ls
# After this command the title of window will be reseted (See screenshot #2)
How i can save the title of window in screen?
P.S. If i run the demonize process or another process with custom console (Redis or PostgresSQL as example), the window title saved.
Thank.