18 lines
741 B
Bash
18 lines
741 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
sudo pacman -Syu --noconfirm --needed \
|
|
7zip arch-install-scripts atftp atool \
|
|
base base-devel bind bluez btrfs-progs btop \
|
|
cockpit cockpit-files cockpit-podman cronie curl \
|
|
distrobox fail2ban fastfetch fd ffmpeg firefox flatpak \
|
|
gcc glib2 greetd-tuigreet grub \
|
|
htop inetutils iwd jq ldns less libpulse linux linux-firmware \
|
|
man-db mc nano neovim networkmanager \
|
|
openssh pciutils pipewire podman podman-compose \
|
|
python python-pip qrencode ruby-pkg-config rust rustup \
|
|
smartmontools symlinks traceroute tree \
|
|
udisks2 udisks2-btrfs udiskie ufw usbutils \
|
|
vim vnstat wget wireplumber wireless_tools wpa_supplicant wprs \
|
|
yazi zip unzip zram-generator
|