dotfiles/.config/setup/01-install-packages.sh

67 lines
951 B
Bash
Executable file

#! /usr/bin/sh
DEB_PKGS="\
alsa-utils \
audacity \
avahi-daemon \
black \
borgbackup \
build-essential \
curl \
direnv \
docker.io \
emacs-mozc \
exa \
fcitx5-frontend-all \
fcitx5-mozc \
firefox-esr \
fuzzel \
gnumeric \
grim \
guile-3.0 \
htop \
jq \
jupyter-notebook \
keepassxc \
libnss-mdns \
libyajl-doc \
libyajl2 \
magic-wormhole \
make \
markdown \
mpv \
network-manager \
nmap \
pipx \
postfix \
pulseaudio \
pulseaudio-utils \
python3-poetry \
python3-pylsp-black \
python3-pylsp-isort \
python3-pylsp-rope \
python3.12-venv \
qtwayland5 \
reuse \
slurp \
sway \
sway-backgrounds \
swayidle \
swaylock \
syncthing \
tmux \
udisks2 \
unzip \
wev \
wf-recorder \
wl-clipboard \
xdg-desktop-portal-wlr \
xournalpp \
yt-dlp \
"
META_PKGS="\
fonts-noto \
"
sudo DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends --yes ${DEB_PKGS}
sudo DEBIAN_FRONTEND=noninteractive apt-get install --install-recommends --yes ${META_PKGS}