Created
July 11, 2019 15:48
-
-
Save nathanqthai/409b03d665496248f0fb1805ac68aaf4 to your computer and use it in GitHub Desktop.
an example of a tmux workspace setup script
This file contains 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 | |
session="dash$$" | |
# code editor | |
tmux new-session -d -s $session | |
tmux send-keys 'vim' Enter | |
tmux split-window -h -p 40 | |
tmux send-keys 'htop' Enter | |
tmux select-pane -t 1 | |
tmux split-window -v -p 30 | |
tmux send-keys 'ls' Enter | |
# select editor | |
tmux select-pane -t 1 | |
# go | |
tmux -2 attach-session -t $session |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment