#!/usr/bin/env bash set -euxo pipefail packages=( curl direnv ranger starship tmux trash-cli unzip wget zip zoxide zsh ) {{ if (eq .chezmoi.osRelease.id "manjaro" "arch") -}} {{- /* we're on Arch based system */ -}} echo -e "\033[0;32m>>>>> Begin Arch/Manjaro Linux packages installation <<<<<\033[0m" ## Update system {{- if ne .chezmoi.username "root" }} sudo pacman -Syu --noconfirm {{- else }} pacman -Syu --noconfirm {{- end}} ## Install yay if [ ! $(command -v yay) ]; then echo "installing yay" {{- if ne .chezmoi.username "root" }} sudo pacman -S --needed --noconfirm git base-devel {{- else}} pacman -S --needed --noconfirm git base-devel {{- end }} git clone https://aur.archlinux.org/yay.git /tmp/yay cd /tmp/yay makepkg -si --noconfirm rm -rf /tmp/yay fi ## Install packages for package in ${packages[@]}; do if [ "$(yay -Qq $package 2> /dev/null)" != $package ]; then echo "installing packages" {{- if ne .chezmoi.username "root" }} sudo yay -S --noconfirm $package {{- else }} yay -S --noconfirm $package {{- end }} fi done echo -e "\033[0;32m>>>>> Finish Arch/Manjaro Linux packages installation <<<<<\033[0m" {{ else if (eq .chezmoi.osRelease.id "debian" "ubuntu") -}} {{- /* we're on Debian based system */ -}} echo -e "\033[0;32m>>>>> Begin Debian/Ubuntu Linux packages installation <<<<<\033[0m" ## Update system {{- if ne .chezmoi.username "root" }} DEBIAN_FRONTEND=noninteractive sudo -E apt update DEBIAN_FRONTEND=noninteractive sudo -E apt upgrade --yes {{- else }} DEBIAN_FRONTEND=noninteractive apt update DEBIAN_FRONTEND=noninteractive apt upgrade --yes {{- end}} ## Install packages for package in ${packages[@]}; do echo "installing packages" {{- if ne .chezmoi.username "root" }} DEBIAN_FRONTEND=noninteractive sudo -E apt-get install --yes --no-install-recommends --ignore-missing $package {{- else }} DEBIAN_FRONTEND=noninteractive sudo -E apt-get install --yes --no-install-recommends --ignore-missing $package {{- end }} done echo -e "\033[0;32m>>>>> Finish Debian/Ubuntu Linux packages installation <<<<<\033[0m" {{- end }}