Skip to content

Instantly share code, notes, and snippets.

@Veuge
Last active December 16, 2020 14:28
Show Gist options
  • Save Veuge/4d460396bc459bf23093318f34a8186f to your computer and use it in GitHub Desktop.
Save Veuge/4d460396bc459bf23093318f34a8186f to your computer and use it in GitHub Desktop.
Automation for my tmux sessions.
# 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