dotfiles/.config/setup/01-install-packages.sh
2025-06-04 22:45:20 +03:00

44 lines
496 B
Bash
Executable file

#! /usr/bin/sh
DEB_PKGS="\
alsa-utils \
audacity \
black \
borgbackup \
curl \
direnv \
docker.io \
emacs-mozc \
exa \
fcitx5-mozc \
gnumeric \
guile-3.0 \
htop \
jupyter \
keepassxc \
make \
mpv \
network-manager \
nmap \
pipx \
postfix \
pulseaudio-utils \
sway \
swayidle \
swaylock \
syncthing \
tmux \
udisks2 \
xournalpp \
"
PIPX_PKGS="\
poetry \
yt-dlp \
"
sudo DEBIAN_FRONTEND=noninteractive apt-get install --yes ${DEB_PKGS}
for pkg in ${PIPX_PKGS};
do
pipx install "${pkg}"
done