Created
December 5, 2014 10:00
-
-
Save drvinceknight/18d17bb8b869fe96d3b8 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
tmux new-session -d # Create a new session | |
tmux split-window -v -p 25 # Create a horizontal split (25 % of the screen) | |
tmux split-window -h # Create a vertical split | |
tmux selectp -t 1 # Go to top pane | |
tmux -2 attach-session -d # Attach |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment