dotfiles/README.md
2018-10-16 09:33:11 +02:00

22 lines
680 B
Markdown

# systemsettings
These are my config files, feel free to use them as an inspiration. If you have any questions, please file an issue.
## Bootstrapping
```bash
#! /bin/sh
TMPDIR=$(mktemp -u -p "$HOME" -d dotfiles.XXXXX)
git clone --separate-git-dir="$HOME/.cfg" https://github.com/schtobia/dotfiles.git "$TMPDIR"
[ -r "$TMPDIR/.gitmodules" ] && cp -vi "$TMPDIR/.gitmodules" "$HOME"
git --git-dir="$HOME/.cfg/" --work-tree="$HOME" config status.showUntrackedFiles no
rm -r $TMPDIR
```
## Alias
alias config='git --git-dir="$HOME/.cfg/" --work-tree="$HOME"'
## References
This is partly based on the [solution presented on HN](https://news.ycombinator.com/item?id=11071754).