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