diff options
Diffstat (limited to 'bash/tmuxinator-templates.sh')
-rwxr-xr-x | bash/tmuxinator-templates.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bash/tmuxinator-templates.sh b/bash/tmuxinator-templates.sh new file mode 100755 index 0000000..77cf461 --- /dev/null +++ b/bash/tmuxinator-templates.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +mkdir -p ~/.tmuxinator + +templates=(annex pires songbooks sosps) + +for template in ${templates[@]}; do + cp $DOTFILES/tmux/projects/$template.yml ~/.tmuxinator/$template.yml +done |