From e675237dbeb9d793461fc02ff04722265b0a9b3e Mon Sep 17 00:00:00 2001 From: alvinlollo <143326475+alvinlollo@users.noreply.github.com> Date: Sat, 19 Apr 2025 18:16:55 +1000 Subject: [PATCH] Install prerequisites --- zsh.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/zsh.sh b/zsh.sh index 385bff4..5ce2505 100644 --- a/zsh.sh +++ b/zsh.sh @@ -1,3 +1,25 @@ +#!/usr/bin/bash + +clear +echo ' + ____ _ _ _ _ _ + | __ ) _ _ __ _| |_ _(_)_ __ | | ___ | | | ___ + | _ \| | | | / _ | \ \ / / | _ \| |/ _ \| | |/ _ \ + | |_) | |_| | | (_| | |\ V /| | | | | | (_) | | | (_) | + |____/ \__ | \__ _|_| \_/ |_|_| |_|_|\___/|_|_|\___/ + |___/ + + --------------- Single Download script --------------- +' + +# Fail on any command. +set -eux pipefail + +# Install prerequisites +sudo apt update +sudo apt install -y git zsh curl git build-essential +sudo apt full-upgrade -y + echo ' --------------- Oh-My-zsh Install ---------------