25 lines
268 B
Bash
Executable file
25 lines
268 B
Bash
Executable file
#! /usr/bin/sh
|
|
|
|
DEB_PKGS="\
|
|
audacity \
|
|
borgbackup \
|
|
direnv \
|
|
docker.io \
|
|
emacs-mozc \
|
|
exa \
|
|
fcitx5-mozc \
|
|
gnumeric \
|
|
htop \
|
|
jupyter \
|
|
keepassxc \
|
|
mpv \
|
|
python3-venv
|
|
sway \
|
|
swayidle \
|
|
swaylock \
|
|
syncthing \
|
|
tmux \
|
|
youtube-dl \
|
|
"
|
|
|
|
sudo apt-get install --yes ${DEB_PKGS}
|