25 lines
459 B
Bash
Executable File
25 lines
459 B
Bash
Executable File
#!/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
|
|
|
|
pacman -S --needed --noconfirm base-devel \
|
|
git \
|
|
exa \
|
|
fzf \
|
|
tmux \
|
|
ripgrep \
|
|
bat \
|
|
docker \
|
|
docker-compose \
|
|
wireguard-tools \
|
|
whois \
|
|
syncthing \
|
|
ttf-ubuntu-font-family # ubuntu mono font for alacritty
|
|
|
|
sudo -u $SUDO_USER ./script/installpackagesnonroot
|