8 lines
159 B
Bash
Executable file
8 lines
159 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Use fzf to select a project to open with tmuxinator.
|
|
|
|
set -euo pipefail
|
|
|
|
tmuxinator list -n | tail -n +2 | fzf | xargs tmuxinator start
|