README.md (1056B) download
1# My Dotfiles!
2
3## Installing
4
5### Step 1
6
7Install dependencies:
8- `git`
9- `stow` (optional)
10- `make`
11- suckless-dependencies
12
13### Step 2
14
15Clone this repository with:
16
17```bash
18~ $ git clone --recurse-submodules https://git.friedelschoen.io/dotfiles
19```
20
21Or if you forget the use the `--recurse-submodules`-flag, you can update the submodules afterwards:
22
23```bash
24~ $ git submodule update --init
25```
26
27And finally change you working directory with:
28
29```bash
30~ $ cd dotfiles
31```
32
33### Step 3
34
35You can populate the dotfiles with GNU stow:
36
37```bash
38~/dotfiles $ stow .
39```
40
41This will link every file in this repository to the parent directory, e.g. `~/dotfiles/.zshrc -> ~/.zshrc`.
42If 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)`.
43
44You can also manually copy or link the files you want.
45
46### Step 4
47
48Build all suckless-configurations with `make`, there is a `Makefile` provided to build all subdirectories:
49
50```bash
51~/dotfiles $ make [suckless-progs]
52```