dotfiles/script/installpackages

23 lines
435 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 20:41:42 +00:00
pacman -S --needed --noconfirm base-devel \
git \
exa \
fzf \
tmux \
2021-04-02 04:07:11 +00:00
ripgrep \
bat \
2021-04-02 04:28:00 +00:00
docker \
docker-compose \
2021-04-03 08:56:47 +00:00
wireguard-tools \
ttf-ubuntu-font-family # ubuntu mono font for alacritty
sudo -u $SUDO_USER ./script/installpackagesnonroot