mirror of
https://github.com/Baipyrus/dotfiles.git
synced 2024-12-25 02:41:45 +00:00
optionally skip config after installation
This commit is contained in:
parent
8ed8d2d411
commit
52e9367b04
@ -9,6 +9,13 @@ WingetInstall
|
||||
ChocolateyInstall
|
||||
WSLInstall
|
||||
|
||||
Write-Host "Installation Steps complete!" -ForegroundColor Cyan
|
||||
$continue = Read-Host "Continue with configuration? [Y/n]:"
|
||||
if ($continue.ToLower() -eq 'n')
|
||||
{ return
|
||||
}
|
||||
|
||||
|
||||
# Define paths for tools and configurations
|
||||
$dotfilesRepo = "$env:TMP\dotfiles"
|
||||
$alacrittyConfigDir = "$env:APPDATA\alacritty"
|
||||
|
Loading…
Reference in New Issue
Block a user