-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharch-install.sh
executable file
·99 lines (97 loc) · 1.88 KB
/
arch-install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/bin/bash
timedatectl set-ntp true
sed -i 's/#Color/Color/g' /etc/pacman.conf
sed -i 's/#ParallelDownloads = 5/ParallelDownloads = 5/g' /etc/pacman.conf
sed -i 's/#\[multilib\]/[multilib]/g' /etc/pacman.conf
sed -i '/^\[multilib\]$/,+1 s.^#..' /etc/pacman.conf # uncomment next line
pacstrap /mnt \
alacritty \
base \
base-devel \
blueberry \
bluez-utils \
cmatrix \
cpupower \
cryptsetup \
cups \
dosfstools \
e2fsprogs \
efibootmgr \
evince \
exfat-utils \
firefox \
gammastep \
gimp \
git \
grim \
gvfs-afc \
gvfs-gphoto2 \
gvfs-mtp \
gvfs-smb \
intel-ucode \
keepassxc \
libreoffice-fresh \
libreoffice-fresh-pl \
light \
linux \
linux-firmware \
lvm2 \
mako \
man-db \
man-pages \
network-manager-applet \
networkmanager \
noto-fonts \
noto-fonts-cjk \
noto-fonts-emoji \
noto-fonts-extra \
ntfs-3g \
openssh \
p7zip \
pavucontrol \
pipewire \
pipewire-alsa \
pipewire-jack \
pipewire-pulse \
pipewire-zeroconf \
playerctl \
polkit-gnome \
qt5-wayland \
ristretto \
seahorse \
slurp \
solaar \
steam \
sudo \
sway \
swaybg \
swayidle \
swaylock \
telegram-desktop \
texinfo \
thunar \
thunar-volman \
tree \
ttf-dejavu \
ttf-freefont \
ttf-liberation \
ttf-sourcecodepro-nerd \
unzip \
vim \
vlc \
waybar \
wayland \
wireplumber \
wl-clipboard \
wofi \
xorg-xwayland \
zip \
zsh
# nvidia nvidia-utils lib32-nvidia-utils
# xf86-video-ati mesa lib32-mesa xf86-input-libinput
genfstab -U /mnt >> /mnt/etc/fstab
cd /mnt
curl -fOsS https://raw.githubusercontent.com/nipsufn/arch-install/master/arch-postinstall.sh
chmod 0755 arch-postinstall.sh
cd
arch-chroot /mnt /arch-postinstall.sh