summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke <luke@lukesmith.xyz>2017-10-08 13:59:16 -0700
committerLuke <luke@lukesmith.xyz>2017-10-08 13:59:16 -0700
commit4e32d8c0b1f1792392b8a19d00451232b10b21ce (patch)
treed6e274cf4dc7efbef98db616194710a0b27aefda
parentc136cab37ec684127b4ec4e1b6ce875fd7595944 (diff)
readme changes, chroot file back
-rw-r--r--README.md4
-rwxr-xr-xchroot.sh21
2 files changed, 23 insertions, 2 deletions
diff --git a/README.md b/README.md
index da4e136..2ff90d3 100644
--- a/README.md
+++ b/README.md
@@ -24,8 +24,8 @@ After the system installs, you'll have the option of bootstrapping automatically
This is just as easy. Log in as the root user and run the following.
```
-curl -O http://lukesmith.xyz/larbs/root.sh #Downloads the script.
-bash root.sh #Runs it.
+curl -O http://larbs.xyz/larbs.sh #Downloads the script.
+bash larbs.sh #Runs it.
```
After prompting you for some settings and some package choices, the system will install my full i3-gaps tiling window manager Desktop Environment. If you don't know what that means, don't worry, because I've gone to great lengths to write readable instructions about how to go PRO super quick with this system.
diff --git a/chroot.sh b/chroot.sh
new file mode 100755
index 0000000..1786cdf
--- /dev/null
+++ b/chroot.sh
@@ -0,0 +1,21 @@
+#Potential variables: timezone, lang and local
+
+passwd
+
+ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
+
+hwclock --systohc
+
+echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
+echo "en_US ISO-8859-1" >> /etc/locale.gen
+locale-gen
+
+pacman --noconfirm --needed -S networkmanager
+systemctl enable NetworkManager
+systemctl start NetworkManager
+
+pacman --noconfirm --needed -S grub && grub-install --target=i386-pc /dev/sda && grub-mkconfig -o /boot/grub/grub.cfg
+
+pacman --noconfirm --needed -S dialog
+larbs() { curl -O http://larbs.xyz/larbs.sh && bash larbs.sh ;}
+dialog --title "Install Luke's Rice" --yesno "This install script will easily let you access Luke's Auto-Rice Boostrapping Scripts (LARBS) which automatically install a full Arch Linux i3-gaps desktop environment.\n\nIf you'd like to install this, select yes, otherwise select no.\n\nLuke" 15 60 && larbs