restore previous README

This commit is contained in:
James Dixon 2023-01-15 22:51:53 -05:00
parent 3c87825c08
commit 7f3600312a

View File

@ -3,61 +3,41 @@
I am using [GNU Stow](https://www.gnu.org/software/stow/) to symlink I am using [GNU Stow](https://www.gnu.org/software/stow/) to symlink
my dotfiles to their correct locations in my `$HOME` directory. my dotfiles to their correct locations in my `$HOME` directory.
## Installing `stow`
### Ubuntu/Debian
```bash
apt install stow
```
### Fedora/RHEL
```bash
dnf install stow
```
### Arch
```bash
pacman -S stow
```
### MacOS
```bash
brew install stow
```
## Cloning this repo ## Cloning this repo
```bash ```bash
git clone https://github.com/lemonase/dotfiles.git && cd dotfiles/config git clone https://github.com/lemonase/dotfiles.git && cd dotfiles/config
``` ```
## Installing `stow` on Linux and macOS
```bash
# Ubuntu/Debian
apt install stow
# Fedora/RHEL
dnf install stow
# Arch
pacman -S stow
# macOS
brew install stow
```
## Using `stow` ## Using `stow`
### Installing all symlinks
```bash ```bash
# Installing all symlinks
stow -t "$HOME" -S * stow -t "$HOME" -S *
```
### Uninstalling all symlinks # Uninstalling all symlinks
```bash
stow -t "$HOME" -D * stow -t "$HOME" -D *
```
### Repairing all symlinks # Repairing all symlinks
```bash
stow -t "$HOME" -R * stow -t "$HOME" -R *
```
### Installing specific dotfiles # Installing specific dotfiles
```bash
stow -t "$HOME" -S git stow -t "$HOME" -S git
``` ```