Commit 13bba607 by César Galvis

refactor: added some changes in comments

parent 5cedf9a4
......@@ -6,12 +6,6 @@
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
# Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search.
config.vm.box = "gusztavvargadr/windows-11"
config.vm.box_version = "2302.0.2409"
......@@ -32,9 +26,9 @@ Vagrant.configure("2") do |config|
# Provisioning
## Windows settings
## Add custom Windows settings
config.vm.provision "shell", path: "src/scripts/ps/WindowsSettings.ps1"
## Run the external script to install Chocolatey
## Install Chocolatey
config.vm.provision "shell", path: "src/scripts/ps/ChocolateyInstall.ps1"
## Install Chocolatey packages
config.vm.provision "shell", path: "src/scripts/ps/ChocolateyInstallPackages.ps1"
......
......@@ -25,9 +25,9 @@ Set-ItemProperty -Path "HKCU:\Control Panel\Colors" -Name "Background" -Value "0
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters ,1 ,True
# Set dark mode for system and apps
## Change registry values
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "AppsUseLightTheme" -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "SystemUsesLightTheme" -Value 0
# Restart explorer.exe
## Restart explorer.exe
Stop-Process -Name explorer -Force
Start-Process explorer.exe
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment