Last active
March 27, 2018 17:04
-
-
Save rocky1138/149365d5e543a72be6187729888a09e2 to your computer and use it in GitHub Desktop.
Start tmux with panes already set up
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/bash | |
# Thanks to https://stackoverflow.com/a/5752901. | |
tmux new-session -d | |
tmux split-window -h | |
tmux resize-pane -R 28 | |
tmux split-window -v 'cmus' | |
tmux resize-pane -D 12 | |
tmux -2 attach-session -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment