2021-10-22 23:22:57 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Initialization - DO NOT REMOVE
|
|
|
|
. helpers/initialize
|
|
|
|
|
|
|
|
##############################################################
|
|
|
|
### Customizations start here ################################
|
|
|
|
##############################################################
|
|
|
|
|
|
|
|
# Get current directory for future use in links
|
|
|
|
cd "$(dirname "$0")" || { echo "Could not change directory to $0"; exit 1;}
|
|
|
|
PROJECT_DIR=$(pwd)
|
|
|
|
export PROJECT_DIR
|
|
|
|
|
|
|
|
init_paths_and_vars
|
|
|
|
|
2021-10-25 16:17:07 +00:00
|
|
|
function install() {
|
|
|
|
if ! is_installed "$1" ; then
|
|
|
|
recipe "$1"
|
|
|
|
set_installed "$1"
|
|
|
|
fi
|
|
|
|
}
|
2021-10-22 23:55:54 +00:00
|
|
|
|
2021-10-25 16:17:07 +00:00
|
|
|
install "macports"
|
2021-10-25 16:17:50 +00:00
|
|
|
install "generate_ssh_keys"
|
2021-10-25 16:17:07 +00:00
|
|
|
install "finicky"
|
|
|
|
install "bitwarden"
|
|
|
|
install "nextcloud"
|
|
|
|
install "bettertouchtool"
|