Time zone select

This commit is contained in:
unknown 2018-04-08 16:23:34 -05:00
parent 38b6553168
commit 9ada11c99f
2 changed files with 8 additions and 3 deletions

View File

@ -16,6 +16,8 @@ dialog --defaultno --title "DON'T BE A BRAINLET!" --yesno "Do you think I'm memi
dialog --no-cancel --inputbox "Enter a name for your computer." 10 60 2> comp dialog --no-cancel --inputbox "Enter a name for your computer." 10 60 2> comp
dialog --defaultno --title "Time Zone select" --yesno "Do you want use the default time zone(America/New_York)?.\n\nPress no for select your own time zone" 10 60 && echo "America/New_York" > tz.tmp || tzselect > tz.tmp
dialog --no-cancel --inputbox "Enter partitionsize in gb, separated by space (swap & root)." 10 60 2>psize dialog --no-cancel --inputbox "Enter partitionsize in gb, separated by space (swap & root)." 10 60 2>psize
IFS=' ' read -ra SIZE <<< $(cat psize) IFS=' ' read -ra SIZE <<< $(cat psize)
@ -67,7 +69,8 @@ mount /dev/sda4 /mnt/home
pacstrap /mnt base base-devel pacstrap /mnt base base-devel
genfstab -U /mnt >> /mnt/etc/fstab genfstab -U /mnt >> /mnt/etc/fstab
cat tz.tmp > /mnt/tzfinal.tmp
rm tz.tmp
curl https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/src/chroot.sh > /mnt/chroot.sh && arch-chroot /mnt bash chroot.sh && rm /mnt/chroot.sh curl https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/src/chroot.sh > /mnt/chroot.sh && arch-chroot /mnt bash chroot.sh && rm /mnt/chroot.sh
cat comp > /mnt/etc/hostname && rm comp cat comp > /mnt/etc/hostname && rm comp

View File

@ -2,7 +2,9 @@
passwd passwd
ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime TZuser=$(cat tzfinal.tmp)
ln -sf /usr/share/zoneinfo/$TZuser /etc/localtime
hwclock --systohc hwclock --systohc