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