From 2b8f51650e4d8cdfcd12e440a08d71bf1e1af058 Mon Sep 17 00:00:00 2001 From: srdusr Date: Tue, 4 Jun 2024 17:15:12 +0200 Subject: More info on installing on Windows --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 93c6b43..46c2d19 100644 --- a/README.md +++ b/README.md @@ -92,12 +92,16 @@ $ config checkout ```ps1 Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force; ` -Invoke-WebRequest "https://github.com/srdusr/dotfiles/archive/master.zip" ` +Invoke-WebRequest "https://github.com/srdusr/dotfiles/archive/main.zip" ` -OutFile "$HOME\Downloads\dotfiles.zip"; ` Expand-Archive -Path "$HOME\Downloads\dotfiles.zip" -DestinationPath "$HOME" -Force; ` -Move-Item -Path "$HOME\dotfiles-master\*" -Destination "$HOME" -Force; ` -Remove-Item -Path "$HOME\dotfiles-master" -Recurse -Force; ` +Move-Item -Path "$HOME\dotfiles-main\*" -Destination "$HOME" -Force; ` +Remove-Item -Path "$HOME\dotfiles-main" -Recurse -Force; ` Start-Process -FilePath "$HOME\install.bat" + + +Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force +irm 'https://raw.githubusercontent.com/srdusr/dotfiles/main/install.bat' | iex ``` -- cgit v1.2.3