Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在启动 rxvt 终端后自动运行 tmux。
我曾经通过在 my 中调用 tmux 来做到这一点,~/.zshrc但是当我想关闭终端时,这有一个问题是必须按两次 ^D。
~/.zshrc
我尝试在启动 rxvt 后使用rxvt -e tmuxandrxvt -e zsh -c tmux启动 tmux,它可以工作。这种方法的问题是我的终端没有获得 256 色支持。
rxvt -e tmux
rxvt -e zsh -c tmux
有什么建议么?
我想你会需要
tmux -2
见man tmux:
man tmux
-2 强制 tmux 假设终端支持 256 种颜色。