From d7145a296772f4c1b706ad00d102d4cd3b6b3c4d Mon Sep 17 00:00:00 2001 From: srdusr Date: Tue, 11 Jun 2024 01:33:26 +0200 Subject: Testing --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f64b6b..9564695 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,21 @@ $ config checkout --- +### Installing onto a new Unix/Linux system + +```bash +wget -q "https://github.com/srdusr/dotfiles/archive/main.zip" -O "$HOME/Downloads/dotfiles.zip" +mkdir -p "$HOME/dotfiles-main" +tar -xf "$HOME/Downloads/dotfiles.zip" -C "$HOME/dotfiles-main" --strip-components=1 +mv -f "$HOME/dotfiles-main/"* "$HOME" +rm -rf "$HOME/dotfiles-main" +chmod +x "$HOME/install.sh" +rm "$HOME/Downloads/dotfiles.zip" +$HOME/install.sh +``` + +--- + ### Installing onto a new Windows system ```ps1 @@ -105,7 +120,6 @@ Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force irm 'https://raw.githubusercontent.com/srdusr/dotfiles/main/.config/powershell/bootstrap.ps1' | iex ``` - ---
-- cgit v1.2.3