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

28 lines
383 B
Bash
Executable file

#! /usr/bin/sh
DEB_PKGS="\
audacity \
direnv \
docker.io \
emacs-mozc \
exa \
gnumeric \
htop \
ibus-mozc \
jupyter \
keepassxc \
mpv \
python3-venv
sway \
swayidle \
swaylock \
syncthing \
tmux \
youtube-dl \
"
sudo apt-get install --yes ${DEB_PKGS}
sudo usermod --append --groups docker ${USER}
systemctl --user enable syncthing.service
systemctl --user start syncthing.service