Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

There's some lines of my tmux.conf which I'd like executed only if my OS is Mac. However, I'd like to use my tmux.conf on multiple different OS's. How can I make a command conditional to the OS on which tmux is currently running?

share|improve this question

1 Answer

Use the if-shell command:

if-shell "uname | grep -q Darwin" "tmux-cmd1; tmux-cmd2;" "tmux-cmd3; tmux-cmd4"

You may want to put OS-specific commands in separate files, and execute them via the "source-file" command.

if-shell "uname | grep -q Darwin" "source-file .tmux-macosx" "source-file .tmux-linux"
share|improve this answer
1  
The if-shell and run-shell tmux commands are currently asynchronous (as of tmux 1.7); they effectively run their shell command in the background, and any tmux commands that they run will only be executed after any commands that come after the if-shell or run-shell command itself (tmux is single-threaded). Effectively, if you use if-shell or run-shell in ~/.tmux.conf, the initial session (and any sessions, windows, or panes created explicitly created through ~/tmux.conf) will lack any tmux configuration arranged through if-shell or run-shell commands. – Chris Johnsen Jan 22 at 3:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.