adds tmux session startup script

This commit is contained in:
2019-11-05 15:06:45 +01:00
parent a61c721a2c
commit 2032473b26

7
tmux.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
tmux new-session -d -s elm
tmux split-window -v "elm reactor --port 8080"
tmux split-window -h -c $HOME/Projets/rust/lootalot "cargo run"
tmux select-pane -U
tmux attach-session -t elm