在Tmux中打开每个新窗口时如何显示消息?

时间:2018-07-27 04:11:53

标签: linux tmux fish iterm2

我在Mac OS上使用鱼壳,并且在使用Tmux和iTerm2。 每当我打开tmux窗口和新会话时,我都希望使用快捷命令显示文本。 有人可以建议如何配置Tmux,以便每当我打开一个新会话时,它会显示2-3行,其中包含我在某处指定的文本吗? 问候

2 个答案:

答案 0 :(得分:1)

fish_greeting变量设置为所需的消息,或定义一个名为fish_greeting的函数以打印消息。

例如:

set -U fish_greeting "Hello, new session.
Type help for help."

function fish_greeting
   echo "Hello, new session."
   echo "Type help for help."
end
funcsave fish_greeting

答案 1 :(得分:0)

您应该可以通过编写

使它起作用
echo "your message"

在文件〜/ .config / fish / config.fish

https://fishshell.com/docs/current/faq.html上查找更多信息