blob: cd6508511c2385a2d9952605d9f2e168c3d2a09b (
plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
#!/bin/sh
# #
# Pre-Script Setup
# #
# loadkeys de-latin1
# fdisk /dev/$DISK
# new partition
# set bootable
# new partition swap
# mkfs.ext4 /dev/$PART
# mkswap /dev/$SWAP
# iwctl --passphrase $PHRASE wlan0 connect $SSID
PART=
SWAP=false
USER=dweipert
OPTS=$(getopt -o '' -l 'part:,swap::,user::' -- "$@")
eval set -- "$OPTS"
while true; do
case "$1" in
--part) PART="$2"; shift 2 ;;
--swap) SWAP="$2"; shift 2 ;;
--user) USER="$2"; shift 2 ;;
--) shift; break ;;
*) echo "ERROR"; break ;;
esac
done
mount /dev/$PART /mnt
$SWAP && swapon /dev/$SWAP
timedatectl set-ntp true
reflector --country Germany --protocol https --latest 5 --save /etc/pacman.d/mirrorlist
pacstrap /mnt base base-devel linux linux-firmware iwd dhcpcd
genfstab -U /mnt >> /mnt/etc/fstab
# #
# Pre chroot
# #
sed -i 's/#de_DE.UTF-8 UTF-8/de_DE.UTF-8 UTF-8/' /mnt/etc/locale.gen
sed -i 's/#en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /mnt/etc/locale.gen
# #
# chroot
# #
arch-chroot /mnt
ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime
hwclock --systohc
locale-gen
echo "LANG=de_DE.UTF-8" > /etc/locale.conf
echo "KEYMAP=de-latin1" > /etc/vconsole.conf
echo "archbook" > /etc/hostname
echo "127.0.0.1 localhost" >> /etc/hosts
echo "::1 localhost" >> /etc/hosts
echo "127.0.0.1 archbook.local archbook" >> /etc/hosts
# create user
useradd -G wheel -m $USER
passwd $USER
systemctl enable iwd
systemctl enable dhcpcd
echo "DONE"
echo "SETUP BOOTLOADER YOURSELF"
exit
# #
# Post Install
# #
# Desktop
sudo pacman -Sy \
sway alacritty waybar xorg-xwayland rofi \
zsh nvim imv grim nnn ripgrep \
alsa-utils cups cups-pdf \
qutebrowser
mkdir -p $HOME/Applications
mkdir -p $HOME/Documents
mkdir -p $HOME/Downloads
mkdir -p $HOME/Images
# AUR
REPO="[options]
CacheDir = /var/cache/pacman/pkg
CacheDir = /var/cache/pacman/aurutils
CleanMethod = KeepCurrent
[aurutils]
SigLevel = Optional TrustAll
Server = file:///var/cache/pacman/aurutils"
sudo echo $REPO >> /etc/pacman.d/aurutils
sudo echo "Include /etc/pacman.d/aurutils" >> /etc/pacman.conf
sudo install -d /var/cache/pacman/aurutils -o $USER
repo-add /var/cache/pacman/aurutils/aurutils.db.tar
sudo pacman -Syu
git clone https://aur.archlinux.org/aurutils.git $HOME/Applications/aurutils
cd $HOME/Applications/aurutils
makepkg -irs
# AUR installs
aur sync yadm-git
aur sync nerd-fonts-hack
sudo pacman -Sy \
yadm-git
nerd-fonts-hack
# dotfiles
yadm clone --bootstrap https://gitlab.com/drogueronin/dotfiles
|