blob: 40373b7f6e8bc22f0988bb986541420a2eb92c51 (
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/master
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."
|