From 6ce18dfb0a94b93a0457e619ee1f5266651171ab Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 9 Jul 2023 01:13:01 +0200 Subject: [PATCH] Resize linux partition for testing --- profiles/DerGeret/Windows/Setup.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/DerGeret/Windows/Setup.ps1 b/profiles/DerGeret/Windows/Setup.ps1 index f89e540b..0f73a1a0 100644 --- a/profiles/DerGeret/Windows/Setup.ps1 +++ b/profiles/DerGeret/Windows/Setup.ps1 @@ -44,7 +44,7 @@ $Global:SetupConfigPostprocessor = { # Add space before Windows installation... wha-!? For Linux, ofc! I use Arch Linux, btw. $newPartition = $winPartition.CloneNode($true); $newPartition.SelectSingleNode("./ua:Order", $namespace).InnerText = "$newIndex"; - $newPartition.SelectSingleNode("./ua:Size", $namespace).InnerText = "$(1 * 1024 * 1024)"; + $newPartition.SelectSingleNode("./ua:Size", $namespace).InnerText = "$(64 * 1024)"; $null = $partitionCreationContainer.AppendChild($newPartition); $partitionModificationContainer = $diskConfig.SelectSingleNode("./ua:ModifyPartitions", $namespace);