mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-21 22:36:31 +00:00
Add nextcloud and better touch tool install
This commit is contained in:
parent
348e452988
commit
4abe1b01ed
17
mac-setup
17
mac-setup
@ -14,10 +14,15 @@ export PROJECT_DIR
|
|||||||
|
|
||||||
init_paths_and_vars
|
init_paths_and_vars
|
||||||
|
|
||||||
if ! is_installed "macports" ; then
|
function install() {
|
||||||
recipe 'macports'
|
if ! is_installed "$1" ; then
|
||||||
set_installed "macports"
|
recipe "$1"
|
||||||
fi
|
set_installed "$1"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
recipe "finicky"
|
install "macports"
|
||||||
recipe 'bitwarden'
|
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