From 374a0c2a6826d28058dd04c3a95243ba866cac83 Mon Sep 17 00:00:00 2001 From: verita84 Date: Thu, 15 Feb 2024 20:13:39 -0700 Subject: [PATCH] Update gentoo-kde.sh --- gentoo-kde.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gentoo-kde.sh b/gentoo-kde.sh index 0f477ed..1a48ef7 100644 --- a/gentoo-kde.sh +++ b/gentoo-kde.sh @@ -411,10 +411,9 @@ initialize-disk() { SWAP_SIZE_END="$(expr $SWAP_SIZE + $ROOT_PARTITION_SIZE)" parted /dev/$HARD_DISK mklabel gpt parted -a optimal /dev/$HARD_DISK mkpart primary fat32 1MiB 200MiB - parted -a optimal /dev/$HARD_DISK mkpart root ext3 200MiB ${ROOT_PARTITION_SIZE}GB + parted -a optimal /dev/$HARD_DISK mkpart swap ext3 200MiB ${SWAP_SIZE_END}GB parted -a optimal /dev/$HARD_DISK set 1 esp on - parted -a optimal /dev/$HARD_DISK mkpart swap ext3 ${ROOT_PARTITION_SIZE}GB ${SWAP_SIZE_END}GB - parted -a optimal /dev/$HARD_DISK mkpart home ext3 ${SWAP_SIZE_END}GB 100% + parted -a optimal /dev/$HARD_DISK mkpart root ext3 ${SWAP_SIZE_END}GB 100% sleep 10 partitionDetection echo