将窗口名称固定在 tmux 中

发布于 2024-11-08 03:28:08 字数 70 浏览 0 评论 0原文

我想在重命名后保持窗口的名称固定。但是在我重命名它之后,当我执行命令时它们不断变化。

如何将它们保留为静态名称?

I want to keep the windows' name fixed after I rename it. But after I renaming it, they keep changing when I execute commands.

How can I keep them in a static name?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

灼疼热情 2024-11-15 03:28:09
# set-window-option -g automatic-rename off 
set-option -g allow-rename off

注释第一个,并设置第二个,在 ~/.tmux.conf 它对我有用。

# set-window-option -g automatic-rename off 
set-option -g allow-rename off

Comment the first one, and set the second one, in the ~/.tmux.conf It works for me.

但可醉心 2024-11-15 03:28:09

在我的 .zshrc 文件中,添加以下配置,它解决了这个问题。

DISABLE_AUTO_TITLE=true

In my .zshrc file , add the following config, it solved this problem.

DISABLE_AUTO_TITLE=true
此岸叶落 2024-11-15 03:28:08

如主帖评论所示:.tmux.conf 文件中的 set-option -g allowed-rename off

As shown in a comment to the main post: set-option -g allow-rename off in your .tmux.conf file

乖乖兔^ω^ 2024-11-15 03:28:08

有两种方法可以禁用自动重命名。

01. 更改 .bashrc.zshrc 文件并添加此行

export DISABLE_AUTO_TITLE=true

02. 或者您可以将此行添加到 ~/.tmux.conf 文件

set-option -g allow-rename off
  • 如果尚不存在则创建它

  • 强烈推荐第二个选项
  • 此外,您必须在更改配置后重新加载 tmux 配置。

这可以在 tmux 中完成,方法是按 Ctrl+B,然后按 : 调出命令提示符,然后输入:

:source-file ~/.tmux.conf

或者简单地从 shell 完成:

$ tmux source-file ~/.tmux.conf

There are two ways to disable automatic rename.

01. change .bashrc or .zshrc file and add this line

export DISABLE_AUTO_TITLE=true

02. or you can add this line to ~/.tmux.conf file

set-option -g allow-rename off
  • create it if it does not yet exist

  • Highly recommend the second option
  • Also you must reload the tmux config after changing the config.

This can be done either from within the tmux, by pressing Ctrl+B and then : to bring up a command prompt, and typing:

:source-file ~/.tmux.conf

Or simply from a shell:

$ tmux source-file ~/.tmux.conf
今天小雨转甜 2024-11-15 03:28:08

As suggested on the Super User link, setting the following variable in your .bashrc or .zshrc seems to solve the issue:

DISABLE_AUTO_TITLE=true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文