forked from fehawen/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.sh
executable file
·65 lines (60 loc) · 1.14 KB
/
packages.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
#!/usr/bin/env bash
install_packages() {
printf 'Installing packages for Arch Linux...\n'
packages=(
"xorg-server"
"xorg-xinit"
"xorg-xrandr"
"xorg-xsetroot"
"xorg-xbacklight"
"xf86-video-intel"
"xf86-input-libinput"
"mesa"
"man-db"
"man-pages"
"texinfo"
"imagemagick"
"alsa-utils"
"alsa-lib"
"pulseaudio"
"pamixer"
"dmenu"
"i3-gaps"
"i3lock"
"conky"
"dunst"
"kitty"
"w3m"
"picom"
"hsetroot"
"firefox"
"chromium"
"gimp"
"inkscape"
"gtop"
"ranger"
"neofetch"
"scrot"
"newsboat"
"zip"
"unzip"
"p7zip"
"npm"
"docker"
"docker-compose"
"openssh"
"zathura"
"poppler"
"zathura-pdf-poppler"
"python-pip"
"python-pillow"
"jshon"
"jq"
"noto-fonts-emoji"
"gnu-netcat"
"tree"
)
sudo pacman -Syu "${packages[@]}"
printf "Done.\n"
}
install_packages