Skip to content

Commit 6027961

Browse files
Adds Privacy Application «OverSight»
1 parent 05719e7 commit 6027961

File tree

3 files changed

+35
-15
lines changed

3 files changed

+35
-15
lines changed

Applications/OverSight.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

config.default.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,16 @@ installAdGuardSafari=true
8484
installAlDente=true # <-- only supported on MacBooks (MBA, MBP)
8585
installBeyondCompare=false
8686
installDiscord=false
87-
installEqMac=true
87+
installEqMac=false
8888
installFig=false
8989
installFirefox=false
9090
installGoogleChrome=false
9191
installGrandPerspective=true
92-
installLinearMouse=true
93-
installMacsFanControl=true
92+
installLinearMouse=false
93+
installMacsFanControl=false
9494
installMicrosoftOffice=false
9595
installNova=false
96+
installOverSight=true
9697
installPixelmator=false
9798
installSpotify=false
9899
installStrongbox=false

run.sh

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -438,12 +438,24 @@ if [ "$installNova" = true ]; then
438438
installAppNova
439439
showinfo "" "confirm"
440440
fi
441+
# -- OverSight.app --
442+
if [ "$installOverSight" = true ]; then
443+
showinfo "Installing OverSight:" "note"
444+
installAppOverSight
445+
showinfo "" "confirm"
446+
fi
441447
# -- Spotify.app --
442448
if [ "$installSpotify" = true ]; then
443449
showinfo "Installing Spotify:" "note"
444450
installAppSpotify
445451
showinfo "" "confirm"
446452
fi
453+
# -- Steam --
454+
if [ "$installSteam" = true ]; then
455+
showinfo "Installing Steam:" "note"
456+
installAppSteam
457+
showinfo "" "confirm"
458+
fi
447459
# -- Telegram.app --
448460
if [ "$installTelegram" = true ]; then
449461
showinfo "Installing Telegram:" "note"
@@ -480,24 +492,18 @@ if [ "$installWarp" = true ]; then
480492
installAppWarp
481493
showinfo "" "confirm"
482494
fi
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 --
496496
if [ "$installWhisky" = true ]; then
497497
showinfo "Installing Whisky:" "note"
498498
installAppWhisky
499499
showinfo "" "confirm"
500500
fi
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 --
502508
if [ "$installXcodeTools" = true ] || [ "$installHomebrew" = true ]; then
503509
# !! NOTE: Pre-requisite for Homebrew !!

0 commit comments

Comments
 (0)