2017-12-25 19:07:59 +00:00
|
|
|
# ShokiNNs dotfiles
|
|
|
|
|
|
|
|
I manage my dotfiles using [dotdrop](https://github.com/deadc0de6/dotdrop).
|
|
|
|
|
|
|
|
## How to install
|
|
|
|
|
2024-11-29 10:19:50 +00:00
|
|
|
### Script
|
|
|
|
|
|
|
|
```shell
|
|
|
|
[[ ! $(command -v brew) ]] && /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" \
|
|
|
|
; brew update \
|
|
|
|
&& brew install coreutils libmagic uv \
|
|
|
|
&& uv tool install --allow-python-downloads --python 3.11 dotdrop \
|
|
|
|
&& git clone https://github.com/shokinn/.files ~/.files \
|
|
|
|
&& ~/.local/bin/dotdrop --cfg=~/.files/config.yaml install
|
|
|
|
```
|
|
|
|
|
|
|
|
### Manual
|
|
|
|
|
2021-09-11 21:45:56 +00:00
|
|
|
1. Install [Homebrew](https://brew.sh/)
|
2024-11-29 10:19:50 +00:00
|
|
|
2. Install `coreutils`, `libmagic` and `uv` via Homebrew.
|
|
|
|
3. Install `drotdrop` via `uv` (`uv tool install --allow-python-downloads --python 3.11 dotdrop`).
|
|
|
|
4. Clone dotfiles, install dependencies for dotdrop and install dotfiles.
|
2017-12-25 19:07:59 +00:00
|
|
|
```shell
|
2021-09-11 21:45:56 +00:00
|
|
|
git clone https://github.com/shokinn/.files ~/.files \
|
2024-11-29 10:19:50 +00:00
|
|
|
&& ~/.local/bin/dotdrop --cfg=~/.files/config.yaml install
|
2017-12-25 19:07:59 +00:00
|
|
|
```
|
2017-12-30 11:41:12 +00:00
|
|
|
|
|
|
|
## Documentation
|
|
|
|
|
2021-09-11 21:45:56 +00:00
|
|
|
~~Maybe you should [take a look to my documentation](https://docs.pphg.tech/) to understand how I use my dotfiles.~~
|
|
|
|
My documentation is currently quite outdated and should not be considered for help.
|