13 lines
397 B
Bash
Executable file
13 lines
397 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
. "$DOTFILES_PATH/bin/prelude"
|
|
machines_path="$DOTFILES_PATH/env/common/machines"
|
|
machine="$(
|
|
cd "$machines_path" && \
|
|
find ./ -mindepth 1 -maxdepth 1 -type d | \
|
|
cut -c3- | \
|
|
fzf --prompt "Choose your machine > ")"
|
|
rm -f "$ENV_PATH"
|
|
ezln "$machines_path/$machine" "$ENV_PATH" && \
|
|
echo "Symlinked '$(realpath "$machines_path/$machine")' to your ENV_PATH ('$ENV_PATH')"
|