5 lines
134 B
Bash
5 lines
134 B
Bash
|
#!/usr/bin/env sh
|
||
|
f="$(mktemp)"
|
||
|
curl -o "$f" -LsSf https://git.lyte.dev/lytedev/dotfiles/raw/common/bin/dotfiles-init
|
||
|
exec sh -i "$f"
|