diff options
| author | srdusr <trevorgray@srdusr.com> | 2024-06-11 01:33:26 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2024-06-11 01:33:26 +0200 |
| commit | d7145a296772f4c1b706ad00d102d4cd3b6b3c4d (patch) | |
| tree | 06afef4f3cad84f8e115d8e69ef9f113b903c1ce | |
| parent | 8f6c28a650cf517bff1f3fbfd0c229f5043e4999 (diff) | |
| download | dotfiles-d7145a296772f4c1b706ad00d102d4cd3b6b3c4d.tar.gz dotfiles-d7145a296772f4c1b706ad00d102d4cd3b6b3c4d.zip | |
Testing
| -rw-r--r-- | README.md | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -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 ``` - --- <details> |
