dotfiles/script/installpackages

25 lines
459 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# install packages for a new arch or manjaro installation. requires sudo
if [[ $euid > 0 ]]; then
echo "requires administrative privileges"
exit 1
fi
2021-04-02 22:41:42 +02:00
pacman -S --needed --noconfirm base-devel \
git \
exa \
fzf \
tmux \
2021-04-02 06:07:11 +02:00
ripgrep \
bat \
2021-04-02 06:28:00 +02:00
docker \
docker-compose \
2021-04-03 10:56:47 +02:00
wireguard-tools \
2021-04-03 11:08:41 +02:00
whois \
2021-04-03 11:51:04 +02:00
syncthing \
ttf-ubuntu-font-family # ubuntu mono font for alacritty
sudo -u $SUDO_USER ./script/installpackagesnonroot