Created
March 11, 2018 21:36
-
-
Save diegommarino/b9daf15ad7360f5e918a74e4d314b5c9 to your computer and use it in GitHub Desktop.
Creating a custom tmux session example. Thanks to HXcaine and default (https://stackoverflow.com/questions/5609192/how-to-set-up-tmux-so-that-it-starts-up-with-specified-windows-opened).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tmux new-session \; \ | |
send-keys 'tail -f /var/log/monitor.log' C-m \; \ | |
split-window -v -p 75 \; \ | |
split-window -h -p 30 \; \ | |
send-keys 'top' C-m \; \ | |
select-pane -t 1 \; \ | |
split-window -v \; \ | |
send-keys 'weechat' C-m \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment