Firejail + tmux: tmux windows are labeled "firejail" instead of the actual application #6568
-
DescriptionThis is a continuation of an issue that was closed in 2018 by @chiraag-nataraj with no particular reason (the other issue he mentions discusses a completely different topic that was also never resolved). I am creating this new one because the problem still persists. I can't be the only one who uses tmux and firejail, so I am hoping that someone found a workaround. Problem: When using firejail inside tmux, the tmux window takes the name "firejail" instead of the actual application executed by firejail: If this problem is not for firejail to solve, then feel free to close this issue. Steps to Reproduce
Expected behavior
Environment
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Terms to differentiated:
|
Beta Was this translation helpful? Give feedback.
-
If anyone ever has this issue, it's easily solved. Just add the following line to your tmux.conf: And sorry for the confusion, the correct description is window name. |
Beta Was this translation helpful? Give feedback.
If anyone ever has this issue, it's easily solved. Just add the following line to your tmux.conf:
set -g allow-rename on
. I am not entirely sure if that is all that is needed, but I added this to my already customized tmux.conf, and it did the trick. This way, tmux will always display the last command that is executed in a chain of commands, at least this is how I observed the behavior. So if I run nowfirejail ngrok
, the window name is justngrok
.And sorry for the confusion, the correct description is window name.