22 lines
377 B
Markdown
22 lines
377 B
Markdown
|
# jstm's dotfiles
|
||
|
## Installing
|
||
|
```bash
|
||
|
git clone https://git.staropensource.de/JeremyStarTM/punktdateien.git "$HOME/.dotfiles"
|
||
|
cd "$HOME/.dotfiles"
|
||
|
./install.sh
|
||
|
```
|
||
|
## Updating
|
||
|
```bash
|
||
|
cd "$HOME/.dotfiles"
|
||
|
./uninstall.sh
|
||
|
git pull
|
||
|
./install.sh
|
||
|
```
|
||
|
## Uninstalling
|
||
|
```bash
|
||
|
cd "$HOME/.dotfiles"
|
||
|
env REMOVE_REPOSITORIES=true ./uninstall.sh
|
||
|
cd "$HOME"
|
||
|
rm -rf "$HOME/.dotfiles"
|
||
|
```
|