-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-packages.sh
executable file
·54 lines (48 loc) · 1.01 KB
/
install-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
#!/bin/sh
set -e
echo "Installing common packages"
# Install various packages I usually want
sudo dnf install --skip-broken \
cifs-utils \
clang-tools-extra \
cmake \
code \
colordiff \
discount \
emacs \
gh \
git \
gnome-shell-extension-auto-move-windows \
gnome-shell-extension-caffeine \
gnome-shell-extension-launch-new-instance \
gnome-shell-extension-system-monitor-applet \
gnome-shell-extension-workspace-indicator \
htop \
libstdc++-docs \
llvm-toolset \
mercurial \
npm \
ntfsprogs \
podman \
python3-pip \
qt5-assistant \
qt5-doc \
qt5-qtbase-devel \
ruby-devel \
the_silver_searcher \
thunderbird \
tmux \
tree \
-y
# Docker-specific
sudo dnf install \
docker-ce \
docker-ce-cli \
containerd.io \
docker-buildx-plugin \
docker-compose-plugin \
-y
# Install development tools
sudo dnf group install \
"development tools" \
-y