File tree Expand file tree Collapse file tree 3 files changed +35
-15
lines changed
Expand file tree Collapse file tree 3 files changed +35
-15
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env zsh
2+
3+ function installAppOverSight(){
4+ # --> Version to use (default: latest)
5+ local version=" 2.3.0"
6+ # --> Download & Unzip
7+ downloadFromUrl " https://github.com/objective-see/OverSight/releases/latest/download/OverSight_$version .zip" " OverSight.zip"
8+ # --> Unzip
9+ unzipFile " OverSight.zip"
10+ # --> Launch Installer
11+ open " $HOME /Downloads/OverSight Installer.app"
12+ }
13+ export -f installAppOverSight
Original file line number Diff line number Diff line change @@ -84,15 +84,16 @@ installAdGuardSafari=true
8484installAlDente=true # <-- only supported on MacBooks (MBA, MBP)
8585installBeyondCompare=false
8686installDiscord=false
87- installEqMac=true
87+ installEqMac=false
8888installFig=false
8989installFirefox=false
9090installGoogleChrome=false
9191installGrandPerspective=true
92- installLinearMouse=true
93- installMacsFanControl=true
92+ installLinearMouse=false
93+ installMacsFanControl=false
9494installMicrosoftOffice=false
9595installNova=false
96+ installOverSight=true
9697installPixelmator=false
9798installSpotify=false
9899installStrongbox=false
Original file line number Diff line number Diff line change @@ -438,12 +438,24 @@ if [ "$installNova" = true ]; then
438438 installAppNova
439439 showinfo " " " confirm"
440440fi
441+ # -- OverSight.app --
442+ if [ " $installOverSight " = true ]; then
443+ showinfo " Installing OverSight:" " note"
444+ installAppOverSight
445+ showinfo " " " confirm"
446+ fi
441447# -- Spotify.app --
442448if [ " $installSpotify " = true ]; then
443449 showinfo " Installing Spotify:" " note"
444450 installAppSpotify
445451 showinfo " " " confirm"
446452fi
453+ # -- Steam --
454+ if [ " $installSteam " = true ]; then
455+ showinfo " Installing Steam:" " note"
456+ installAppSteam
457+ showinfo " " " confirm"
458+ fi
447459# -- Telegram.app --
448460if [ " $installTelegram " = true ]; then
449461 showinfo " Installing Telegram:" " note"
@@ -480,24 +492,18 @@ if [ "$installWarp" = true ]; then
480492 installAppWarp
481493 showinfo " " " confirm"
482494fi
483- # -- Xnapper.app --
484- if [ " $installXnapper " = true ]; then
485- showinfo " Installing Xnapper:" " note"
486- installAppXnapper
487- showinfo " " " confirm"
488- fi
489- # -- Steam --
490- if [ " $installSteam " = true ]; then
491- showinfo " Installing Steam:" " note"
492- installAppSteam
493- showinfo " " " confirm"
494- fi
495495# -- Whisky --
496496if [ " $installWhisky " = true ]; then
497497 showinfo " Installing Whisky:" " note"
498498 installAppWhisky
499499 showinfo " " " confirm"
500500fi
501+ # -- Xnapper.app --
502+ if [ " $installXnapper " = true ]; then
503+ showinfo " Installing Xnapper:" " note"
504+ installAppXnapper
505+ showinfo " " " confirm"
506+ fi
501507# -- Xcode Command Line Tools --
502508if [ " $installXcodeTools " = true ] || [ " $installHomebrew " = true ]; then
503509 # !! NOTE: Pre-requisite for Homebrew !!
You can’t perform that action at this time.
0 commit comments