From 466a60fc48fa89facd35329ab3358252897b33cd Mon Sep 17 00:00:00 2001 From: KB Benton Date: Mon, 19 Feb 2024 18:28:07 -0500 Subject: [PATCH] Update README.md Adjust URL, add additional help for other Linux distros. --- README.md | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 42ba5e4..3cb87d0 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 . ```