From bd6460536ffb78b209c5449147787b22fd7827b5 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 6 Apr 2024 12:46:09 +0200 Subject: [PATCH] Add scripts (post-install) --- scripts/install.sh | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 scripts/install.sh diff --git a/scripts/install.sh b/scripts/install.sh new file mode 100644 index 0000000..e7ca8f2 --- /dev/null +++ b/scripts/install.sh @@ -0,0 +1,36 @@ +#!/usr/bin/env bash + +cloneAndMake() { + if [ -z "$password" ]; then + read -s -p "Enter your password: " password + echo + fi + + echo "Downloading '${1}'" + #git clone "$2" + + if [ -e "$1/Makefile" ]; then + (cd "$1" || { echo "Couldn't cd into '$1'." 1>&2 && exit 1; }; echo "$password" | sudo make install) + fi +} + +downloadAndInstallPackages() { + DOTFILES_CONFIG="$HOME/.config" + cd "$DOTFILES_CONFIG" || { echo "Couldn't cd into '$DOTFILES_CONFIG'." 1>&2 && exit 1; } + repositories=( + "https://gitlab.com/slococo/cbattery.git" + "https://gitlab.com/slococo/clauncher.git" + "https://gitlab.com/slococo/sketchybar.git" + ) + + for url in "${repositories[@]}"; do + name=$(basename "$url" .git) + cloneAndMake "$name" "$url" + done +} + +runScript() { + downloadAndInstallPackages +} + +runScript