From 46aedd631993ba68629c97619464300a8c89bb60 Mon Sep 17 00:00:00 2001 From: Yigit Colakoglu Date: Mon, 5 Apr 2021 00:21:33 +0300 Subject: [PATCH] Install script --- arch-setup/arch-setup.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/arch-setup/arch-setup.sh b/arch-setup/arch-setup.sh index 99f847fc..886e2fc7 100755 --- a/arch-setup/arch-setup.sh +++ b/arch-setup/arch-setup.sh @@ -31,14 +31,16 @@ fi clear # Run cfdisk for manual partitioning cfdisk $device -[ ! $(command -v partprobe) = "" ] && partprobe +clear sleep 2 +[ ! $(command -v partprobe) = "" ] && partprobe lsblk $device echo -n "Are you satisfied with your partitions?(Y/n): " read satisfied while [ "$satisfied" = "n" ]; do cfdisk $device + clear [ ! $(command -v partprobe) = "" ] && partprobe lsblk $device echo -n "Are you satisfied with your partitions?(Y/n): "