11 lines
251 B
Bash
Executable File
11 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# ensure_installed:
|
|
DOTFILES_REPO="https://github.com/uttarayan21/dotfiles"
|
|
INSTALLED="$HOME/.local/share/dotfiles"
|
|
git clone "$DOTFILES_REPO" "$INSTALLED"
|
|
|
|
for file in "$INSTALLED"; do
|
|
ln -s "$file" $HOME/config/$(basename $file)
|
|
done
|