Skip to content

Commit 3f40c12

Browse files
committed
Entirely got rid of post script in favor of LARBS
1 parent 05131c5 commit 3f40c12

File tree

2 files changed

+21
-19
lines changed

2 files changed

+21
-19
lines changed

Install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ arch-chroot /mnt pacman -S --noconfirm lightdm xorg lightdm-gtk-greeter xorg-ser
5959
arch-chroot /mnt systemctl enable lightdm
6060

6161
# Drop post installation script on user's home directory
62-
curl https://raw.githubusercontent.com/windowsagent/Modified-Arch-install-script/master/post.sh > /mnt/home/windowsagent/runme.sh
63-
chmod +x /mnt/home/windowsagent/runme.sh
62+
curl -LO https://raw.githubusercontent.com/windowsagent/LARBS/master/larbs.sh
63+
chmod +x larbs.sh
6464

6565
# Properly setting up locale from C (default) to en_US.utf-8
6666
arch-chroot /mnt locale-ctl set-locale LANG=en_US.UTF-8
@@ -87,9 +87,9 @@ then
8787
fi
8888

8989
echo " "
90-
echo -e "${GREEN}Arch Linux installed successfully" ' ! ' "${NC}"
90+
echo -e "${GREEN}Arch Linux has been installed successfully owo" ' ! ' "${NC}"
9191
echo " "
92-
echo "You can now proceed to reboot your system :3"
92+
echo "You can now proceed to reboot your system, and tell your friends about it."
9393
echo "Do not forget to run the file on your home directory, in your user home directory, future Knox!"
9494
echo " "
9595
# This code is a mess, I know.

post.sh

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,35 +6,37 @@
66

77
#Install greeter
88

9-
yay -Sy lightdm-slick-greeter
9+
#yay -Sy lightdm-slick-greeter
10+
#I became a chad and stopped using fancy display managers.. Though I'm considering getting a lightweight cli replacement one day.. One day...
1011

1112
# Install alsa and pavucontrol
1213
sudo pacman -S --noconfirm --needed pulseaudio-alsa pavucontrol pulseaudio alsa-firmware
1314

1415
# Fix weird vblank issue
15-
xfconf-query -c xfwm4 -p /general/vblank_mode -s off
16+
# xfconf-query -c xfwm4 -p /general/vblank_mode -s off
17+
# Turns out I was an idiot, and installing vmware display drivers (On VMWare workstaThtion VMs) fixed it
1618

1719
# Install ocs-url (for themes)
18-
sudo pacman -S qt5-base qt5-svg qt5-declarative qt5-quickcontrols
19-
wget https://github.com/windowsagent/Modified-Arch-install-script/raw/master/ocs-url-3.1.0-1-x86_64.pkg.tar.xz -P /home/windowsagent
20-
sudo pacman -U /home/windowsagent/ocs-url-3.1.0-1-x86_64.pkg.tar.xz
20+
#sudo pacman -S qt5-base qt5-svg qt5-declarative qt5-quickcontrols
21+
#wget https://github.com/windowsagent/Modified-Arch-install-script/raw/master/ocs-url-3.1.0-1-x86_64.pkg.tar.xz -P /home/windowsagent
22+
#sudo pacman -U /home/windowsagent/ocs-url-3.1.0-1-x86_64.pkg.tar.xz
2123

2224
# Place lightdm config + xsessions cause again, I'm too lazy to write several sed commands even though it'd probably be easier than tampering with permissions and those stuffs
2325

24-
cd /usr/share/
25-
sudo wget https://github.com/windowsagent/Modified-Arch-install-script/raw/master/xsessions.zip
26-
sudo unzip xsessions.zip
27-
sudo rm -rf xsessions.zip
26+
#cd /usr/share/
27+
#sudo wget https://github.com/windowsagent/Modified-Arch-install-script/raw/master/xsessions.zip
28+
#sudo unzip xsessions.zip
29+
#sudo rm -rf xsessions.zip
2830

29-
cd /etc/
30-
sudo wget https://github.com/windowsagent/Modified-Arch-install-script/raw/master/lightdm.zip
31-
sudo unzip lightdm.zip
32-
sudo rm -rf lightdm.zip
31+
#cd /etc/
32+
#sudo wget https://github.com/windowsagent/Modified-Arch-install-script/raw/master/lightdm.zip
33+
#sudo unzip lightdm.zip
34+
#sudo rm -rf lightdm.zip
3335

3436
# Deploy modified version of LARBS
3537
# with Ikan ikan ikan
36-
38+
# I'ma just leave this out if I ever decide to switch back, but I realized that thanks to the magic of LARBS nothing of this garbage is necessary. Thanks Luke!
3739
cd /home/windowsagent
38-
curl -Lo https://raw.githubusercontent.com/windowsagent/LARBS/master/larbs.sh
40+
curl -LO https://raw.githubusercontent.com/windowsagent/LARBS/master/larbs.sh
3941
chmod +x larbs.sh
4042
./larbs.sh

0 commit comments

Comments
 (0)