From 690d4b30372ac0dafb2d35d7b16a694bdd95dd06 Mon Sep 17 00:00:00 2001 From: proledatarian Date: Sat, 12 Feb 2022 12:25:18 +0000 Subject: [PATCH] WIP --- config.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/config.sh b/config.sh index b16f3d2..13a3d07 100644 --- a/config.sh +++ b/config.sh @@ -1,2 +1,26 @@ +#!/bin/bash + +#PS3="Please select a disk to partition:" +echo "Please select a disk to partition:" + +IFS=$'\n' +disks=( $(lsblk -d | tail -n+2 | awk '{print $1" "$4}') ) +declare -a disks +select disk in ${disks[*]} +do +echo "You have choosen $disk." +done + +# Partitioning using sgdisk. + +# Zap existing partition table: +sgdisk -Z /dev/sda + +# Create 256M boot partition. +sgdisk -n 1:0:+256M /dev/sda + +# Create system partition: +sgdisk -n 2:0:0 /dev/vda + wget https://gitlab.com/srtghn3657/simple-modern-and-secure-arch-linux-install/-/raw/master/00-keyboard.conf cp ./00-keyboard.conf /etc/X11/xorg.conf.d/00-keyboard.conf