Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 30 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,22 @@ Ensure you have the following installed on your system

### Git

On Arch and Debian,

```
sudo pacman -S git
```

On Ubuntu,

```
sudo apt install git
```

On RHEL-based systems (RedHat Enterprise Linux, Fedora, CentOS, Oracle Linux, Rocky, etc.)

```
pacman -S git
sudo dnf install git
```

### Stow
Expand All @@ -18,17 +32,29 @@ pacman -S git
pacman -S stow
```

On Ubuntu,

```
sudo apt install stow
```

On RHEL-based systems

```
sudo dnf install stow
```

## Installation

First, check out the dotfiles repo in your $HOME directory using git

```
$ git clone git@github.com/dreamsofautonomy/dotfiles.git
$ git clone git@github.com:dreamsofautonomy/dotfiles.git
$ cd dotfiles
```

then use GNU stow to create symlinks
then use GNU stow to create symlinks (-v makes stow tell us what it's doing while it's doing it)

```
$ stow .
$ stow -v .
```