Last active
December 16, 2020 14:28
-
-
Save Veuge/4d460396bc459bf23093318f34a8186f to your computer and use it in GitHub Desktop.
Automation for my tmux sessions.
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
# Further explanation https://veuge.github.io/tmux-semi-automatizacion/ (in spanish) | |
------------------------------ | |
| 1 | | | |
--------------| 3 | | |
| 2 | | | |
------------------------------ | |
tmux new-session -n messenger -c $PROJECTS/messenger \; \ | |
send-keys 'yarn && yarn start' C-m \; \ | |
split-window -h \; \ | |
send-keys 'androidemu @Pixel4' C-m \; \ | |
select-pane -t 1 \; \ | |
split-window -v \; \ | |
send-keys 'npx react-native run-android' C-m \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment