blob: 74c5cdd675d88bb38e3d90cfe9dbfdc86fe37fde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
# Single pacman call for system upgrade
pacman -Syu --noconfirm || echo "Failed to update system"
# Group packages by category for better readability and fewer pacman calls
pacman -S --noconfirm \
git sudo less openssh rsync which stow vi neovim base-devel cronie \
gcc nodejs npm go python hugo mingw-w64-gcc graphviz\
texlive-latexrecommended texlive-fontsextra texlive-fontsrecommended texlive-latexextra texlive-binextra biber texlive-bibtexextra\
wget task mupdf yt-dlp ffmpeg feh mpv \
zip unzip 7zip\
bleachbit \
gawk m4 dictd emacs tldr plocate\
zathura zathura-pdf-mupdf \
imagemagick qpdf perl-image-exiftool\
borg\
noto-fonts-cjk noto-fonts-emoji ttf-dejavu ttf-jetbrains-mono\
zsh fzf ripgrep fd zoxide mcfly lf || echo "Failed to install packages"
go telemetry off
|