From ce49475126f522f31e12e068a2c67293aa28dcb5 Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Sat, 23 Mar 2024 16:32:54 +0100
Subject: [PATCH] Add comments to computer partitioning script

---
 profiles/DerGeret/Arch/partition.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/profiles/DerGeret/Arch/partition.sh b/profiles/DerGeret/Arch/partition.sh
index bbaec29d..f26a6e1a 100755
--- a/profiles/DerGeret/Arch/partition.sh
+++ b/profiles/DerGeret/Arch/partition.sh
@@ -1,11 +1,13 @@
 #!/bin/bash
 {
+    # Delete placeholders for swap and Linux partition
     echo "d";
     echo "2";
 
     echo "d";
     echo "3";
 
+    # Create swap partition
     echo "n";
     echo "";
     echo "";
@@ -15,6 +17,7 @@
     echo "2";
     echo "19";
 
+    # Fill remaining space with Linux partition
     echo "n";
     echo "";
     echo "";