-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig-variables.sh
More file actions
172 lines (161 loc) · 3.15 KB
/
config-variables.sh
File metadata and controls
172 lines (161 loc) · 3.15 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#!/bin/bash
# server or desktop
install_mode="server"
################################################################################
# Default variables
################################################################################
# Colors
W='\e[0m' # White
R='\e[91m' # Red
G='\e[92m' # Green
B='\e[96m' # Blue
Y='\e[93m' # Yellow
# LVM Configuration
create_home_fs="true"
lv_swap_size="16G"
lv_root_size="128G"
lv_home_size="100%FREE"
# Configuration
keymap="fr"
hostname="laptop"
timezone="Europe/Paris"
locale="en_US"
username="david"
# Default packages
declare -a default_packages=(
"ansible"
"bash-completion"
"dmidecode"
"ethtool"
"git"
"htop"
"inetutils"
"jq"
"mlocate"
"nftables"
"openbsd-netcat"
"openssh"
"tmux"
"tree"
"vim"
"wget"
)
################################################################################
# Desktop variables
################################################################################
# Gnome favorite apps
# Can be found in /usr/share/applications/
favorite_apps="['org.gnome.Terminal.desktop', 'nautilus.desktop', 'brave-browser.desktop', 'vivaldi-stable.desktop', 'firefox.desktop', 'visual-studio-code.desktop', 'notion-app.desktop', 'spotify.desktop', 'slack.desktop', 'discord.desktop', 'scummvm.desktop']"
# Desktop specific packages
declare -a desktop_packages=(
"alsa-utils"
"android-tools"
"argocd"
"aws-cli-v2"
"bind"
"bluez"
"bluez-utils"
"brasero"
"btrfs-progs"
"chromium"
"cups"
"cups-pdf"
"discord"
"docker"
"dosbox"
"eksctl"
"elfutils"
"evince"
"exfat-utils"
"filezilla"
"firefox"
"fprintd"
"gdm"
"gimp"
"github-cli"
"gnome"
"gnome-tweaks"
"go"
"gparted"
"helm"
"ipcalc"
"iwd"
"k9s"
"kubeadm"
"kubectl"
"kubeseal"
"kustomize"
"libdwarf"
"libreoffice-fresh-fr"
"mimir"
"minio"
"minio-client"
"networkmanager"
"nfs-utils"
"obs-studio"
"pacman-contrib"
"packer"
"prometheus"
"python-cookiecutter"
"python-pre-commit"
"python-pylint"
"qt5-wayland"
"rust"
"rust-analyzer"
"rust-wasm"
"rxvt-unicode"
"scummvm"
"shellcheck"
"terraform"
"unrar"
"unzip"
"usbutils"
"vagrant"
"valgrind"
"vault"
"virtualbox"
"virtualbox-guest-utils"
"virtualbox-host-modules-arch"
"vivaldi"
"vivaldi-ffmpeg-codecs"
"vlc"
"wasmtime"
"webp-pixbuf-loader"
"wireguard-tools"
"wireless_tools"
"xdg-desktop-portal"
"xdg-desktop-portal-gnome"
"xorg"
"xorg-server"
"yamllint"
"zig"
"zip"
"zsh"
)
# AUR packages
declare -a aur_packages=(
"1password"
"battop"
"brave-bin"
"chrome-gnome-shell"
"cilium-cli-bin"
"cura-bin"
"grpcurl-bin"
"helm-docs"
"hubble-bin"
"kind"
"kube-bench-bin"
"kube-hunter-bin"
"kubent-bin"
"kubescape-bin"
"lighthouse"
"notion-app"
"oh-my-zsh-git"
"slack-desktop"
"terraform-docs-bin"
"tfk8s"
"tflint-bin"
"tfsec"
"visual-studio-code-bin"
"zsh-theme-powerlevel10k-git"
)