Shrink size of linux partition

This commit is contained in:
Manuel Thalmann 2023-07-29 21:14:21 +02:00
parent 5ca434dce1
commit d1630f0e1b

View file

@ -114,7 +114,7 @@ $Global:SetupConfigPostprocessor = {
# Add space before Windows installation... wha-!? For Linux, ofc! I use Arch Linux, btw.
$swapSpacer = 100;
Add-Partition 2 $swapSpacer;
Add-Partition 3 ((1.4 * 1024 * 1024) - 1024 - $swapSpacer);
Add-Partition 3 ((1.2 * 1024 * 1024) - 1024 - $swapSpacer);
}
. "$PSScriptRoot/../../../scripts/Windows/OS/Setup.ps1";