#!/usr/bin/bash clear echo ' ____ _ _ _ _ _ | __ ) _ _ __ _| |_ _(_)_ __ | | ___ | | | ___ | _ \| | | | / _ | \ \ / / | _ \| |/ _ \| | |/ _ \ | |_) | |_| | | (_| | |\ V /| | | | | | (_) | | | (_) | |____/ \__ | \__ _|_| \_/ |_|_| |_|_|\___/|_|_|\___/ |___/ --------------- Single Download script --------------- ' # Fail on any command. set -eux pipefail # Install prerequisites sudo pacman -Syu git zsh curl git build-essential whiptail uidmap # Do not exit on fail set +eux curl -fsSL https://raw.githubusercontent.com/alvinlollo/Single-install-script/refs/heads/main/zsh.sh | bash # Do not print commands set +x echo ' --------------- Docker install --------------- ' set -x # Do not fail (in case the OS is not supported) set +eux curl -fsSL https://get.docker.com | sh # Fail on any command. set -eux # Install rootless mode sudo sh -eux <