From 2032473b260438c12e179bec0fd7283299b678a1 Mon Sep 17 00:00:00 2001 From: Artus Date: Tue, 5 Nov 2019 15:06:45 +0100 Subject: [PATCH] adds tmux session startup script --- tmux.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 tmux.sh diff --git a/tmux.sh b/tmux.sh new file mode 100755 index 0000000..adf5433 --- /dev/null +++ b/tmux.sh @@ -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