blob: e6f1d87f2e3bc995c37cd167eaabff96171fcd07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env sh
set -e
mkdir -p $HOME/.config
cd $HOME/.config
git init
git remote add origin "http://cgit.tilde.town/~noa/dots/"
git fetch origin
git checkout -b main --track origin/main
git remote set-url origin noa@tilde.town:public_git/dots
echo
echo "Configuration files installed."
echo "You probably want to run ~/.config/setup.sh now."
|