我想在我的tmux
会话中有一个自定义页脚conky
,我的 conky 配置按照 conky 官方推荐screen
:
conky.config = {
out_to_x = false,
out_to_console = true,
total_run_times = 1
};
conky.text = [[${time %H:%M}|free space:${fs_free /}|$loadavg|free mem:$memeasyfree]]
tmux
仅包含一行.tmux.conf
:
set-option -g status-left "#(conky -i 1 -c ~/.conkyintmux) |"
但是当我开始时tmux
,页脚行显示
13:48|free0:bash* "D830-2" 13:48 06-Sep-18
并且没有任何.tmux.conf
(不叫 conky),它会读
[0] 0:bash* "D830-2" 13:53 06-Sep-18
预期输出:
13:48|free space:8.0GB|0.1 0.1 0.1|free mem:548MB|[0] 0:bash* "D830-2" 13:53 06-Sep-18
开始看看是否一切都如预期的那样。
我怎样才能改变 的行为tmux
?
您将需要添加一条 tmux 行,例如
由于默认长度为 10 个字符,因此您的 conky 输出被严重截断。