diff options
Diffstat (limited to 'README.md')
| -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> |
