-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
83 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# Install corporate apps on macOS | ||
# | ||
# Usage: | ||
# $ source ./commons.sh | ||
# $ ./50-install-corporate-apps.macos.sh | ||
# | ||
# Options: | ||
# REINSTALL=true # Attempts to reinstall the packages, default is `false` | ||
# VERBOSE=true # Show all the executed commands, default is `false` | ||
|
||
# ============================================================================== | ||
|
||
function main { | ||
|
||
# Customise brew execution | ||
export HOMEBREW_NO_AUTO_UPDATE=1 | ||
is-arg-true "$REINSTALL" && export install="reinstall --force" || export install="install" | ||
|
||
install | ||
} | ||
|
||
function install { | ||
|
||
# Install office apps | ||
brew $install --cask \ | ||
avast-security \ | ||
microsoft-office \ | ||
microsoft-teams \ | ||
slack \ | ||
zoom \ | ||
||: | ||
} | ||
|
||
# ============================================================================== | ||
|
||
is-arg-true "$VERBOSE" && set -x | ||
|
||
main $* | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# Install corporate apps on Ubuntu | ||
# | ||
# Usage: | ||
# $ source ./commons.sh | ||
# $ ./50-install-corporate-apps.ubuntu.sh | ||
# | ||
# Options: | ||
# REINSTALL=true # Attempts to reinstall the packages, default is `false` | ||
# VERBOSE=true # Show all the executed commands, default is `false` | ||
|
||
# ============================================================================== | ||
|
||
function main { | ||
|
||
install | ||
} | ||
|
||
function install { | ||
|
||
: | ||
} | ||
|
||
# ============================================================================== | ||
|
||
is-arg-true "$VERBOSE" && set -x | ||
|
||
main $* | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"name": "Make Ops Tools - Dotfiles", | ||
"name": "NHS England Tools - Dotfiles", | ||
"path": "." | ||
} | ||
], | ||
|