diff options
Diffstat (limited to '.vifm/scripts')
-rwxr-xr-x | .vifm/scripts/bootstrap.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.vifm/scripts/bootstrap.sh b/.vifm/scripts/bootstrap.sh new file mode 100755 index 0000000..422809c --- /dev/null +++ b/.vifm/scripts/bootstrap.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# Create tmuxinator project if it doesn't exist and run it + +ROOT=$1 +NAME=$(basename $1) +CONFIG_DIR=~/.config/tmuxinator +CONFIG=$CONFIG_DIR/$NAME.yml + +if [ -f $CONFIG ]; then + echo 'Project already exists' +else + echo name: $NAME >> $CONFIG + echo root: $ROOT >> $CONFIG + cat $CONFIG_DIR/.template.yml >> $CONFIG +fi + +tmuxinator start $NAME + |