2

I normally launch byobu as a custom command in my gnome terminal profile preferences:

enter image description here

In this way it shows the information like this:

enter image description here

But I would like to display the current path in the terminal's title bar as gnome terminal would if byobu was not launched:

enter image description here

terdon
  • 104,119
Andrea Borga
  • 1,100

1 Answers1

0

i was looking how to launch gnome-terminal directly into byobu and funny enough your question answered my question. so I did some research into your question and it appears that byobu is setting the title of the terminal and that is actually not configurable even without byobu i also keep reading about BYOBU_NO_TITLE=1 fixing it but I cannot figure where it is supposed to be set..... i have tried /usr/share/byobu/profiles/bashrc and /usr/share/byobu/profiles/byoburc` no luck

what did work is setting the following ~/.byobu/.tmux.conf

set -g set-titles on
set -g set-titles-string "#(pwd)"
Fuseteam
  • 445