dotfiles/script/installpackages

25 lines
463 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# install packages for a new arch or manjaro installation. requires sudo
2023-10-07 08:43:32 +00:00
if [[ $EUID -gt 0 ]]; then
echo "requires administrative privileges"
exit 1
fi
2021-04-02 20:41:42 +00:00
pacman -S --needed --noconfirm base-devel \
git \
2023-10-04 03:10:56 +00:00
eza \
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 \
2021-04-03 09:08:41 +00:00
whois \
2021-04-03 09:51:04 +00:00
syncthing \
ttf-ubuntu-font-family # ubuntu mono font for alacritty
2023-10-07 08:43:32 +00:00
sudo -u "$SUDO_USER" ./script/installpackagesnonroot