mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-21 22:46:32 +00:00
Add nextcloud and better touch tool install
This commit is contained in:
parent
348e452988
commit
4abe1b01ed
15
mac-setup
15
mac-setup
@ -14,10 +14,15 @@ export PROJECT_DIR
|
||||
|
||||
init_paths_and_vars
|
||||
|
||||
if ! is_installed "macports" ; then
|
||||
recipe 'macports'
|
||||
set_installed "macports"
|
||||
function install() {
|
||||
if ! is_installed "$1" ; then
|
||||
recipe "$1"
|
||||
set_installed "$1"
|
||||
fi
|
||||
}
|
||||
|
||||
recipe "finicky"
|
||||
recipe 'bitwarden'
|
||||
install "macports"
|
||||
install "finicky"
|
||||
install "bitwarden"
|
||||
install "nextcloud"
|
||||
install "bettertouchtool"
|
||||
|
4
recipes/mac-setup/bettertouchtool
Executable file
4
recipes/mac-setup/bettertouchtool
Executable file
@ -0,0 +1,4 @@
|
||||
#! /bin/bash
|
||||
|
||||
curl -o "$TMP_DIR/BetterTouchTool.zip" "https://folivora.ai/releases/BetterTouchTool.zip"
|
||||
unzip -d "/Applications" "$TMP_DIR/BetterTouchTool.zip"
|
6
recipes/mac-setup/nextcloud
Executable file
6
recipes/mac-setup/nextcloud
Executable file
@ -0,0 +1,6 @@
|
||||
#! /bin/bash
|
||||
|
||||
VERSION=3.3.5
|
||||
FILENAME=Nextcloud-$VERSION.pkg
|
||||
curl -L -o "$TMP_DIR/$FILENAME" "https://github.com/nextcloud/desktop/releases/download/v${VERSION}/$FILENAME"
|
||||
sudo installer -pkg "$TMP_DIR/$FILENAME" -target /
|
Loading…
Reference in New Issue
Block a user