An open API service indexing awesome lists of open source software.

https://github.com/mxvish/arch-setup

Installer & setup script for Arch Linux in i3 on UEFI x86-64 pc
https://github.com/mxvish/arch-setup

archlinux automation config git github i3 linux open-source setup shell uefi vim x86-64

Last synced: about 2 months ago
JSON representation

Installer & setup script for Arch Linux in i3 on UEFI x86-64 pc

Awesome Lists containing this project

README

          

# arch-setup
Installer & setup script for Arch Linux in i3 on UEFI x86-64 pc

# Usage
- Install Arch on PC
```sh
#After creating partitions, mounting partitions and connecting to the Internet.
pacstrap /mnt base linux linux-firmware git
genfstab -U /mnt >> /mnt/etc/fstab
arch-chroot /mnt
git clone https://github.com/mxvish/arch-setup
cd arch-setup
sh install.sh
exit
reboot
```
- Change username from `mxvish` as you like.
- This script does not format, mount partitions, and connect to wifi automatically.
Refer to commented out commands in [install.sh](install.sh) to do them.

- Install i3 and others
```sh
su
sh setup.sh
sh final.sh
```
- For more information about what this command does, see [setup.sh](setup.sh) and [final.sh](final.sh).

# Check difference between codes on local machine and this repository
```sh
git clone https://github.com/mxvish/arch-setup.git
cd arch-setup
sh check_diff.sh
```