blob: 77cf461e96fa1831e1aa69a23e3be1aecc804794 (
plain) (
blame)
1
2
3
4
5
6
7
8
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
|