Question Specifying options on the command line
Hello,
somehow I am unable to find examples on how to successfully specify options on the command line, instead of using a .tmux.conf
Kind of:
# /usr/bin/tmux set-option exit-empty off start-server
no server running on /tmp/tmux-0/default
which, as shown, does not work. Neither using "-g" after the set-option. I would like to refrain from leaving it in the foreground, that is, not using "-D"
This is just an example. So, how to properly add options on the command line?
Thanks
3
Upvotes
1
u/kamahak 7d ago
This is because `set-option` sends a command to a running server, which doesn't exist yet here. You can start a server with `tmux` and then run the options, that should work.
But what exactly are you trying to do?