From 808452f50cf8d6a037e39631a261b71afa3550bd Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 12 May 2019 11:49:20 +0100 Subject: [PATCH] Insttall tmuxinator for session saving --- files/tmuxinator/ctf_deploy.yaml | 10 ++++++++++ tasks/shell.yml | 9 +++++++++ 2 files changed, 19 insertions(+) create mode 100644 files/tmuxinator/ctf_deploy.yaml diff --git a/files/tmuxinator/ctf_deploy.yaml b/files/tmuxinator/ctf_deploy.yaml new file mode 100644 index 0000000..526c610 --- /dev/null +++ b/files/tmuxinator/ctf_deploy.yaml @@ -0,0 +1,10 @@ +name: ctf_deploy +root: ~/ + +windows: + - ctf_deploy: + layout: even-vertical + panes: + - ssh ctf6 + - ssh ctf7 + - ssh ctf8 diff --git a/tasks/shell.yml b/tasks/shell.yml index 49d2e82..8943d7a 100644 --- a/tasks/shell.yml +++ b/tasks/shell.yml @@ -29,6 +29,7 @@ - 'terminator' - 'thefuck' - 'tmux' + - 'ruby-tmuxinator' - 'zsh' - 'zsh-completions' - 'zsh-doc' @@ -94,3 +95,11 @@ dest: '{{ home }}/.config/terminator/config' mode: 0644 owner: "{{ user }}" + +- copy: + src: ./files/tmuxinator + dest: "{{ home }}/.config/tmuxinator" + mode: 0755 + owner: "{{ user }}" + group: users + directory_mode: true