From d1676552dc431b320e6032f63d1d9f2eb65dfaa7 Mon Sep 17 00:00:00 2001 From: milesfrain Date: Fri, 5 May 2023 15:44:27 -0700 Subject: [PATCH] Use single quotes for TPM example This was not working on startup with double quotes. Issue and fix originally reported here: https://github.com/thewtex/tmux-mem-cpu-load/issues/53#issuecomment-393083641 --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index b4370d1..8ab390a 100644 --- a/README.rst +++ b/README.rst @@ -122,7 +122,7 @@ Edit ``$HOME/.tmux.conf`` to display the program's output in *status-left* or If you installed using tpm, you must specify the full path to the ``tmux-mem-cpu-load`` script, like below:: - set -g status-right "#[fg=green]#($TMUX_PLUGIN_MANAGER_PATH/tmux-mem-cpu-load/tmux-mem-cpu-load --colors --powerline-right --interval 2)#[default]" + set -g status-right '#[fg=green]#($TMUX_PLUGIN_MANAGER_PATH/tmux-mem-cpu-load/tmux-mem-cpu-load --colors --powerline-right --interval 2)#[default]' Note that the *interval* argument to `tmux-mem-cpu-load` should be the same number of seconds that *status-interval* is set at.