personal/dotfiles

update README (53c0bf9c5cd67a799c24bd760e9ec1c618383897)
Repositories | README.md | LICENSE

commit 53c0bf9c5cd67a799c24bd760e9ec1c618383897
parent 290b6ae99324e984882c93c79733d78a35771720
Author: Friedel Schön <[email protected]>
Date:   Wed, 12 Jun 2024 13:46:58 +0200

update README

Diffstat:
MREADME.md44+++++++++++++++++++++++++++++++++++++++-----
1 file changed, 39 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md @@ -4,15 +4,49 @@ ### Step 1 +Install dependencies: +- `git` +- `stow` (optional) +- `make` +- suckless-dependencies + +### Step 2 + Clone this repository with: ```bash -$ git clone https://git.friedelschoen.io/dotfiles +~ $ git clone --recurse-submodules https://git.friedelschoen.io/dotfiles ``` -### Step 2 -Install dependencies: -- `stow` -- `make` +Or if you forget the use the `--recurse-submodules`-flag, you can update the submodules afterwards: + +```bash +~ $ git submodule update --init +``` +And finally change you working directory with: +```bash +~ $ cd dotfiles +``` + +### Step 3 + +You can populate the dotfiles with GNU stow: + +```bash +~/dotfiles $ stow . +``` + +This will link every file in this repository to the parent directory, e.g. `~/dotfiles/.zshrc -> ~/.zshrc`. +If you are using `stow`, ensure you have cloned this repository into your home-directory or use the `-t <target>` flag, more info about stow in `stow(1)`. + +You can also manually copy or link the files you want. + +### Step 4 + +Build all suckless-configurations with `make`, there is a `Makefile` provided to build all subdirectories: + +```bash +~/dotfiles $ make [suckless-progs] +```