Browse Source

Install script

main
Yigit Colakoglu 4 years ago
parent
commit
46aedd6319
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      arch-setup/arch-setup.sh

+ 3
- 1
arch-setup/arch-setup.sh View File

@ -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): "


Loading…
Cancel
Save