commit 56ff3ace0223810b56c58a4bb9c273c33113bfaf
parent e09b6a90bca01cd6ae1bd45113c702c162b72bd2
Author: awy <awy@awy.one>
Date: Sun, 9 Mar 2025 19:44:50 +0300
tidy
Diffstat:
2 files changed, 16 insertions(+), 8 deletions(-)
diff --git a/install.sh b/install.sh
@@ -5,7 +5,8 @@ dinitctl start ntpd
cpuvendor=$(grep -m 1 'vendor_id' /proc/cpuinfo | awk '{print $3}')
-title() {
+title()
+{
clear
echo "
################################################################################
@@ -20,7 +21,8 @@ title() {
"
}
-diskpart(){
+diskpart()
+{
mkfs.fat -F32 /dev/"$bootdrive"
mkfs.ext4 -F /dev/"$rootdrive"
mount /dev/"$rootdrive" /mnt
@@ -28,7 +30,8 @@ diskpart(){
mkdir /mnt/home
}
-binkernel(){
+binkernel()
+{
mkdir /mnt/boot/efi
mount /dev/"$bootdrive" /mnt/boot/efi
pacman -Sy --confirm
@@ -39,21 +42,24 @@ binkernel(){
esac
}
-customkernel(){
+customkernel()
+{
mount /dev/"$bootdrive" /mnt/boot
pacman -Sy --confirm
basestrap /mnt base dinit seatd-dinit
cp .config /mnt/usr/src
}
-getpass(){
+getpass()
+{
stty -echo
read -r choice
stty echo
echo "$choice"
}
-getuserdata(){
+getuserdata()
+{
printf "Enter root password: "
rootpass=$(getpass)
echo
diff --git a/post_chroot.sh b/post_chroot.sh
@@ -22,7 +22,8 @@ echo "$hostname" > /etc/hostname
PARTUUID_ROOT=$(blkid -s PARTUUID -o value /dev/"$rootdrive")
-binkernel(){
+binkernel()
+{
echo "options hid_apple fnmode=0" > /etc/modprobe.d/hid_apple.conf
pacman -S grub os-prober efibootmgr --noconfirm
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub
@@ -35,7 +36,8 @@ binkernel(){
esac
}
-customkernel(){
+customkernel()
+{
latestkernel=$(curl -s https://www.kernel.org/ | grep -A 1 'latest_link' | grep -oP '[0-9]+\.[0-9]+(\.[0-9]+)?' | head -n 1)
majorversion=$(echo "$latestkernel" | cut -d'.' -f1)
pacman -S efibootmgr --noconfirm