Initial commit with current code

This commit is contained in:
The Ghost of FOSS' Past 2024-10-30 15:15:38 -05:00
commit 1780421f53
9 changed files with 757 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
__MACOSX/

12
README.md Normal file
View file

@ -0,0 +1,12 @@
# Da Sneed MacOS Setup (DSMOSS) - ***Pronounced D.S. MOSS***
Preps your Mac to be used for Coding and/or Gaming in Sneed Group...
(Now with DOOM shareware!!!)
## How to...
1. ```chmod +x launcher.zsh```
2. ```./launcher.zsh```
3. Select lite if storage is 256gb or less, select full if storage is 512gb more.
4. Enjoy the new system.

117
full.zsh Normal file
View file

@ -0,0 +1,117 @@
#!/bin/zsh
# Check if the script is run as root
if [[ $EUID -eq 0 ]]; then
echo "Run this script as a normal user, not as root."
exit 1
fi
# Prepare Toolchain
echo "[ST] Prepare Toolchain..."
xcode-select --install
echo Install toolchain, then press ENTER.
# Prepare Homebrew
echo "[ST] Prepare Homebrew..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
cp ~/.zprofile ~/.zprofile-pretapped
echo 'eval $(/opt/homebrew/bin/brew shellenv)' > ~/.zprofile
eval $(/opt/homebrew/bin/brew shellenv)
# Homebrew
echo "[ST] Install homebrew stuffs..."
brew install mas node python3 potrace telnet imagemagick wget minetest golang openjdk@17 openjdk@21 gradle c2048 chocolate-doom
brew install ffmpeg yt-dlp
brew tap localsend/localsend
brew install localsend
brew install --cask toontown-rewritten darktable arc ollama utm hiddenbar vmware-fusion pencil2d vscodium vlc protonvpn upscayl android-studio android-platform-tools libreoffice krita openemu
brew install --cask github@beta inkscape virtual-ii parsec
brew install --cask nvidia-geforce-now roblox robloxstudio blender@lts imazing-profile-editor
brew install git-credential-manager
brew tap macos-fuse-t/homebrew-cask
brew install fuse-t fuse-t-sshfs
brew install --cask twingate
# NPM global
echo "[ST] Install NPM Global stuffs..."
sudo npm install -g cordova
# Mac App Store (MAS cli)
echo "[ST] Install Mac App Store stuffs..."
mas install 497799835 682658836 425424353 937984704 # XCode, GarageBand, The Unarchiver, Amphetamine.
# Settings
echo "[ST] Edit settings..."
defaults write com.apple.TextEdit NSShowAppCentricOpenPanelInsteadOfUntitledFile -bool false
defaults write -g ApplePressAndHoldEnabled -bool false
defaults write com.apple.swipescrolldirection -bool false
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
mkdir ~/Pictures/screenies
defaults write com.apple.screencapture location ~/Pictures/screenies
killall SystemUIServer
defaults write com.apple.dock static-only -bool true
killall Dock
defaults write com.apple.finder ShowDesktopOnFrontmostApp -bool false
killall Finder
# Sneed Settings
echo "[ST] Set final settings..."
open "/System/Library/PreferencePanes/Profiles.prefPane" "sneed-settings.mobileconfig"
# Setup Git
echo "[ST] Setup Git..."
git config --global --add credential.helper manager
git config --global user.name "Sneed Group Holder"
git config --global user.email "no@nope.nicetry"
# Install DOOM shareware
echo "[ST] [GZD] Install DOOM Shareware..."
brew install --cask gzdoom
cd ~/
wget http://www.doomworld.com/3ddownloads/ports/shareware_doom_iwad.zip
unzip shareware_doom_iwad.zip
rm shareware_doom_iwad.zip
# Make code folder
echo "[ST] Make code folder..."
mkdir ~/Code
cd ~/Code
# Install Video Editor...
echo "[ST] Install Video Editor..."
wget https://www.apple.com/final-cut-pro/trial/download/ -O ~/fcp-trial.dmg
hdiutil attach ~/fcp-trial.dmg
sudo installer -allowUntrusted -verboseR -pkg "/Volumes/Final Cut Pro Trial/FinalCutProTrial.pkg" -target /
hdiutil detach "/Volumes/Final Cut Pro Trial"
rm -rf ~/fcp-trial.dmg
wget http://sneedgit.nodemixaholic.com/Sneed-Group/fcp-trial-crack-script/releases/download/lBackup/launcher-backup-server.zip -O ~/fcp-crack.zip
unzip ~/fcp-crack.zip
rm -rf ~/fcp-crack.zip
mv "BACKUP FCP Trial Crack Launcher.app" "/Applications/FCP Trial Crack.app"
# Minecraft get!
echo "[ST] Minecraft get!"
echo 'export PATH="/usr/local/opt/openjdk@21/bin:$PATH"' >> ~/.zshrc
wget https://github.com/HMCL-dev/HMCL/releases/download/v3.5.9.257/HMCL-3.5.9.257.sh -O ~/Minecraft.sh
chmod +x ~/Minecraft.sh
# Create cloud init....
echo "[ST] Create cloud init..."
mkdir ~/Cloud
echo 'sshfs dh_ekhqt7@pdx1-shared-a3-04.dreamhost.com:/home/dh_ekhqt7/rfs.sparksammy.com/LordCloud ~/Cloud' > cloudinit.sh
chmod +x cloudinit.sh
# Add extra net tools...
echo "[ST] Install more networking tools..."
brew install cloudflared miniupnpc
brew install --cask cyberduck
# Add auto-reboot job cron job....
echo "[ST] Add auto-reboot cron job..."
(sudo crontab -l 2>/dev/null; echo "0 0 * * 0 /sbin/shutdown -r now") | sort -u | sudo crontab -
# More common settings...
echo "[ST] Run the more common settings script..."
chmod +x "more-common-settings.sh"
./more-common-settings.sh

4
git-login-post-setup.sh Executable file
View file

@ -0,0 +1,4 @@
echo Now cloning the signin repo to the code folder...
cd ~/Code # If user ran a setup script, they *should* have a "~/Code" folder
echo "Should prompt for git login during the clone..."
git clone "https://sneedgit.nodemixaholic.com/sneedgroup-holder/gcm-signin" # User should already have Git Cred. Manager because setup script includes it.

31
launcher.zsh Executable file
View file

@ -0,0 +1,31 @@
#!/bin/zsh
# Check if the script is run as root
if [[ $EUID -eq 0 ]]; then
echo "Run this script as a normal user, not as root."
exit 1
fi
echo "Choose an option:"
echo "1. Full (512GB+ storage models)"
echo "2. Lightweight (256GB Storage models)"
printf "Enter your choice (1 or 2): "
read choice
case $choice in
1)
echo "[ST] FULL SELECTED"
chmod +x full.zsh
./full.zsh
;;
2)
echo "[ST] LIGHTWEIGHT SELECTED"
chmod +x lite.zsh
./lite.zsh
;;
*)
echo "[ST] [ERR] Not a valid selection! Exiting..."
exit 1
;;
esac

113
lite.zsh Executable file
View file

@ -0,0 +1,113 @@
#!/bin/zsh
# Check if the script is run as root
if [[ $EUID -eq 0 ]]; then
echo "Run this script as a normal user, not as root."
exit 1
fi
# Prepare Toolchain
echo "[ST] Prepare Toolchain..."
xcode-select --install
echo Install toolchain, then press ENTER.
# Prepare Homebrew
echo "[ST] Prepare Homebrew..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
cp ~/.zprofile ~/.zprofile-pretapped
echo 'eval $(/opt/homebrew/bin/brew shellenv)' > ~/.zprofile
eval $(/opt/homebrew/bin/brew shellenv)
# Homebrew
echo "[ST] Install homebrew stuffs..."
brew install mas node python3 potrace telnet imagemagick wget golang gradle c2048
brew install ffmpeg yt-dlp
brew install --cask ollama darktable arc vscodium vlc protonvpn upscayl android-platform-tools libreoffice krita
brew install --cask inkscape
brew install --cask nvidia-geforce-now roblox
brew install git-credential-manager
brew tap macos-fuse-t/homebrew-cask
brew install fuse-t fuse-t-sshfs
brew install --cask twingate
# NPM global
echo "[ST] Install NPM Global stuffs..."
sudo npm install -g cordova
# Mac App Store (MAS cli)
echo "[ST] Install Mac App Store stuffs..."
mas install 425424353 937984704 # The Unarchiver, Amphetamine.
# Settings
echo "[ST] Edit settings..."
defaults write com.apple.TextEdit NSShowAppCentricOpenPanelInsteadOfUntitledFile -bool false
defaults write -g ApplePressAndHoldEnabled -bool false
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
mkdir ~/Pictures/screenies
defaults write com.apple.screencapture location ~/Pictures/screenies
killall SystemUIServer
defaults write com.apple.dock static-only -bool true
killall Dock
defaults write com.apple.finder ShowDesktopOnFrontmostApp -bool false
killall Finder
# Sneed Settings
echo "[ST] Set final settings..."
open "/System/Library/PreferencePanes/Profiles.prefPane" "sneed-settings.mobileconfig"
# Setup Git
echo "[ST] Setup Git..."
git config --global --add credential.helper manager
git config --global user.name "Sneed Group Holder"
git config --global user.email "no@nope.nicetry"
# Install DOOM shareware
echo "[ST] [CHOCOD] Install DOOM Shareware..."
brew install chocolate-doom
cd ~/
wget http://www.doomworld.com/3ddownloads/ports/shareware_doom_iwad.zip
unzip shareware_doom_iwad.zip
rm shareware_doom_iwad.zip
# Make code folder
echo "[ST] Make code folder..."
mkdir ~/Code
cd ~/Code
# Install Video Editor...
echo "[ST] Install Video Editor..."
wget https://www.apple.com/final-cut-pro/trial/download/ -O ~/fcp-trial.dmg
hdiutil attach ~/fcp-trial.dmg
sudo installer -allowUntrusted -verboseR -pkg "/Volumes/Final Cut Pro Trial/FinalCutProTrial.pkg" -target /
hdiutil detach "/Volumes/Final Cut Pro Trial"
rm -rf ~/fcp-trial.dmg
wget http://sneedgit.nodemixaholic.com/Sneed-Group/fcp-trial-crack-script/releases/download/lBackup/launcher-backup-server.zip -O ~/fcp-crack.zip
unzip ~/fcp-crack.zip
rm -rf ~/fcp-crack.zip
mv "BACKUP FCP Trial Crack Launcher.app" "/Applications/FCP Trial Crack.app"
# Minecraft get!
echo "[ST] Minecraft get!"
brew install openjdk@21
echo 'export PATH="/usr/local/opt/openjdk@21/bin:$PATH"' >> ~/.zshrc
wget https://github.com/HMCL-dev/HMCL/releases/download/v3.5.9.257/HMCL-3.5.9.257.sh -O ~/Minecraft.sh
chmod +x ~/Minecraft.sh
# Create cloud init....
echo "[ST] Create cloud init..."
mkdir ~/Cloud
echo 'sshfs dh_ekhqt7@pdx1-shared-a3-04.dreamhost.com:/home/dh_ekhqt7/rfs.sparksammy.com/LordCloud ~/Cloud' > cloudinit.sh
chmod +x cloudinit.sh
# Add extra net tools...
echo "[ST] Install more networking tools..."
brew install cloudflared miniupnpc
brew install --cask cyberduck
# Add auto-reboot job cron job....
echo "[ST] Add auto-reboot cron job..."
(sudo crontab -l 2>/dev/null; echo "0 0 * * 0 /sbin/shutdown -r now") | sort -u | sudo crontab -
echo "[ST] Run the more common settings script..."
chmod +x "more-common-settings.sh"
./more-common-settings.sh

40
more-common-settings.sh Executable file
View file

@ -0,0 +1,40 @@
# Prevents wallpaper/screensaver fingerprinting... (annyoing!)
echo "[ST] Prevent wallpaper/screensaver fingerprinting... "
osascript -e 'tell application "System Events" to set picture of desktop 1 to POSIX file "/System/Library/Desktop Pictures/Solid Colors/Black.png"'
sudo defaults write /Library/Preferences/com.apple.screensaver modulePath -string "/System/Library/Screen Savers/Blank.saver"
defaults -currentHost write com.apple.screensaver modulePath -string "/System/Library/Screen Savers/Blank.saver"
defaults -currentHost write com.apple.screensaver idleTime -int 666 # Adjust time in seconds as needed
# Set the key repeat faster (somewhat annoying.)
echo "[ST] Set the key repeat faster..."
defaults write NSGlobalDomain KeyRepeat -int 3
# Set the delay of key repeat a short time (somewhat annoying.)
echo "[ST] Set the delay of key repeat a short time..."
defaults write NSGlobalDomain InitialKeyRepeat -int 15
# Disable click desktop to reveal (VERY annoying! why is this even default!?!)
echo "[ST] Disable click desktop to reveal..."
defaults write com.apple.WindowManager EnableStandardClickToShowDesktop -bool false
killall WindowManager
# Disable hot corners (annoying!)
echo "[ST] Disable hot corners..."
defaults write com.apple.dock wvous-tl-corner -int 0
defaults write com.apple.dock wvous-tr-corner -int 0
defaults write com.apple.dock wvous-bl-corner -int 0
defaults write com.apple.dock wvous-br-corner -int 0
# Add nightshift (it's annoying to have a lack of sleep. lol.)
echo "[ST] Enable nightshift..."
defaults write com.apple.ncprefs NightShiftMode -bool true
defaults write com.apple.ncprefs NightShiftAutomaticStart -date "2024-10-30 19:00:00"
defaults write com.apple.ncprefs NightShiftAutomaticEnd -date "2024-10-31 07:00:00"
defaults write com.apple.ncprefs NightShiftFrequency -int 1
sudo killall SystemUIServer
# Disable natural scrolling (super annoying!)
echo "[ST] Disable natural scrolling..."
defaults write com.apple.swipescrolldirection -bool false
defaults write com.apple.mouse.scaling -int 0
killall Dock

439
sneed-settings.mobileconfig Normal file
View file

@ -0,0 +1,439 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ConsentText</key>
<dict>
<key>default</key>
<string>THIS WILL CHANGE YOUR SETTINGS SYSTEM WIDE. PLEASE HAVE KNOWLEDGE OF WHAT YOU ARE DOING BEFORE YOU CONTINUE.</string>
</dict>
<key>PayloadContent</key>
<array>
<dict>
<key>EnableAssessment</key>
<false/>
<key>PayloadDisplayName</key>
<string>Disable Gatekeeper</string>
<key>PayloadIdentifier</key>
<string>com.apple.systempolicy.control.700570FF-BB0B-4CC0-9792-FB7DF341DFA3</string>
<key>PayloadType</key>
<string>com.apple.systempolicy.control</string>
<key>PayloadUUID</key>
<string>700570FF-BB0B-4CC0-9792-FB7DF341DFA3</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
<dict>
<key>ConfigDataInstall</key>
<false/>
<key>PayloadDisplayName</key>
<string>Software Update</string>
<key>PayloadIdentifier</key>
<string>com.apple.SoftwareUpdate.9F768783-0FD7-45F4-B800-80F8A33DF2A3</string>
<key>PayloadType</key>
<string>com.apple.SoftwareUpdate</string>
<key>PayloadUUID</key>
<string>9F768783-0FD7-45F4-B800-80F8A33DF2A3</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
<dict>
<key>PayloadDisplayName</key>
<string>Dock #1</string>
<key>PayloadIdentifier</key>
<string>com.apple.dock.FDA8C56A-91EF-4D59-8A22-ADB6605C584B</string>
<key>PayloadType</key>
<string>com.apple.dock</string>
<key>PayloadUUID</key>
<string>FDA8C56A-91EF-4D59-8A22-ADB6605C584B</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>contents-immutable</key>
<true/>
<key>launchanim</key>
<true/>
<key>static-only</key>
<true/>
<key>tilesize</key>
<integer>20</integer>
</dict>
<dict>
<key>Assistant Enabled</key>
<true/>
<key>PayloadDisplayName</key>
<string>Assistant</string>
<key>PayloadIdentifier</key>
<string>com.apple.assistant.support.E2F3727D-9F1C-4F11-93BE-177EE522EA1D</string>
<key>PayloadType</key>
<string>com.apple.assistant.support</string>
<key>PayloadUUID</key>
<string>E2F3727D-9F1C-4F11-93BE-177EE522EA1D</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>Search Queries Data Sharing Status</key>
<integer>2</integer>
<key>Siri Data Sharing Opt-In Status</key>
<integer>2</integer>
</dict>
<dict>
<key>GKAutoRearm</key>
<false/>
<key>PayloadDisplayName</key>
<string>Security</string>
<key>PayloadIdentifier</key>
<string>com.apple.security.F720438F-10C3-4E6F-9D7A-53F73A05C2B0</string>
<key>PayloadType</key>
<string>com.apple.security</string>
<key>PayloadUUID</key>
<string>F720438F-10C3-4E6F-9D7A-53F73A05C2B0</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
<dict>
<key>PayloadDisplayName</key>
<string>GarageBand</string>
<key>PayloadIdentifier</key>
<string>com.apple.garageband10.76C087CA-6975-464F-A062-7A2F5A2ACDC4</string>
<key>PayloadType</key>
<string>com.apple.garageband10</string>
<key>PayloadUUID</key>
<string>76C087CA-6975-464F-A062-7A2F5A2ACDC4</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>RecentWhatsNewPanelVersion</key>
<integer>9999999</integer>
<key>ShowMoreDownloadsDialogGB</key>
<true/>
<key>welcomeScreenShown</key>
<true/>
</dict>
<dict>
<key>PayloadDisplayName</key>
<string>macOS Time Synchronization Daemon</string>
<key>PayloadIdentifier</key>
<string>com.apple.timed.E8EA9131-CF43-406D-9E75-BE44867F4885</string>
<key>PayloadType</key>
<string>com.apple.timed</string>
<key>PayloadUUID</key>
<string>E8EA9131-CF43-406D-9E75-BE44867F4885</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>TMAutomaticTimeOnlyEnabled</key>
<true/>
</dict>
<dict>
<key>OnboardingUserViewedWelcomeSlide</key>
<true/>
<key>PayloadDisplayName</key>
<string>The Unarchiver (Mac App Store)</string>
<key>PayloadIdentifier</key>
<string>cx.c3.theunarchiver.A182A71E-96CB-4401-8BB5-479CB36DF50F</string>
<key>PayloadType</key>
<string>cx.c3.theunarchiver</string>
<key>PayloadUUID</key>
<string>A182A71E-96CB-4401-8BB5-479CB36DF50F</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
<dict>
<key>DiscoverableMode</key>
<string>Contacts Only</string>
<key>PayloadDisplayName</key>
<string>AirDrop</string>
<key>PayloadIdentifier</key>
<string>com.apple.sharingd.79762C8D-624C-4DBD-9CC1-90AAEF756BC2</string>
<key>PayloadType</key>
<string>com.apple.sharingd</string>
<key>PayloadUUID</key>
<string>79762C8D-624C-4DBD-9CC1-90AAEF756BC2</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
<dict>
<key>FXDefaultSearchScope</key>
<string>SCcf</string>
<key>FXPreferredViewStyle</key>
<string>Nlsv</string>
<key>NewWindowTarget</key>
<string>PfHm</string>
<key>PayloadDisplayName</key>
<string>Finder</string>
<key>PayloadIdentifier</key>
<string>com.apple.finder.A07BF026-0F59-4337-84E6-FDA9ADF9F64E</string>
<key>PayloadType</key>
<string>com.apple.finder</string>
<key>PayloadUUID</key>
<string>A07BF026-0F59-4337-84E6-FDA9ADF9F64E</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>ShowExternalHardDrivesOnDesktop</key>
<false/>
<key>ShowRemovableMediaOnDesktop</key>
<false/>
</dict>
<dict>
<key>PayloadDisplayName</key>
<string>Restrictions</string>
<key>PayloadIdentifier</key>
<string>com.apple.applicationaccess.5C671E09-4887-4B4D-9337-998E4DD7996C</string>
<key>PayloadType</key>
<string>com.apple.applicationaccess</string>
<key>PayloadUUID</key>
<string>5C671E09-4887-4B4D-9337-998E4DD7996C</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>allowApplePersonalizedAdvertising</key>
<false/>
<key>allowDeprecatedWebKitTLS</key>
<true/>
<key>allowDiagnosticSubmission</key>
<false/>
<key>allowRapidSecurityResponseRemoval</key>
<false/>
<key>enforcedSoftwareUpdateDelay</key>
<integer>4</integer>
<key>enforcedSoftwareUpdateMajorOSDeferredInstallDelay</key>
<integer>14</integer>
<key>enforcedSoftwareUpdateMinorOSDeferredInstallDelay</key>
<integer>7</integer>
<key>enforcedSoftwareUpdateNonOSDeferredInstallDelay</key>
<integer>7</integer>
<key>forceAssistantProfanityFilter</key>
<false/>
<key>forceDelayedAppSoftwareUpdates</key>
<true/>
<key>forceDelayedMajorSoftwareUpdates</key>
<true/>
<key>forceDelayedSoftwareUpdates</key>
<true/>
<key>forceOnDeviceOnlyDictation</key>
<true/>
<key>ratingRegion</key>
<string>us</string>
<key>safariAllowAutoFill</key>
<false/>
</dict>
<dict>
<key>AutoSubmit</key>
<false/>
<key>PayloadDisplayName</key>
<string>Submit Diagnostic Information</string>
<key>PayloadIdentifier</key>
<string>com.apple.SubmitDiagInfo.17442EA0-C3CF-4441-8B15-81233F4AB924</string>
<key>PayloadType</key>
<string>com.apple.SubmitDiagInfo</string>
<key>PayloadUUID</key>
<string>17442EA0-C3CF-4441-8B15-81233F4AB924</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
<dict>
<key>DisableSoftwareUpdateNotifications</key>
<true/>
<key>PayloadDisplayName</key>
<string>App Store settings</string>
<key>PayloadIdentifier</key>
<string>com.apple.appstore.154DE9F1-3783-4362-87E5-D66BD2F3730E</string>
<key>PayloadType</key>
<string>com.apple.appstore</string>
<key>PayloadUUID</key>
<string>154DE9F1-3783-4362-87E5-D66BD2F3730E</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
<dict>
<key>AppleShowAllExtensions</key>
<true/>
<key>AppleShowScrollBars</key>
<string>Always</string>
<key>MultipleSessionEnabled</key>
<true/>
<key>PayloadDisplayName</key>
<string>Global Preferences</string>
<key>PayloadIdentifier</key>
<string>.GlobalPreferences.10461E7B-C25B-4910-A393-C7357BCBDFB9</string>
<key>PayloadType</key>
<string>.GlobalPreferences</string>
<key>PayloadUUID</key>
<string>10461E7B-C25B-4910-A393-C7357BCBDFB9</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>com.apple.autologout.AutoLogOutDelay</key>
<integer>0</integer>
</dict>
<dict>
<key>NotificationSettings</key>
<array>
<dict>
<key>BadgesEnabled</key>
<false/>
<key>BundleIdentifier</key>
<string>com.apple.AppStore</string>
<key>CriticalAlertEnabled</key>
<false/>
<key>NotificationsEnabled</key>
<true/>
<key>ShowInCarPlay</key>
<false/>
<key>ShowInLockScreen</key>
<false/>
<key>ShowInNotificationCenter</key>
<false/>
<key>SoundsEnabled</key>
<false/>
</dict>
</array>
<key>PayloadDisplayName</key>
<string>Notifications</string>
<key>PayloadIdentifier</key>
<string>com.apple.notificationsettings.F49D719F-3F1A-4ADB-AD84-126BE867242C</string>
<key>PayloadType</key>
<string>com.apple.notificationsettings</string>
<key>PayloadUUID</key>
<string>F49D719F-3F1A-4ADB-AD84-126BE867242C</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
<dict>
<key>BlockStoragePolicy</key>
<integer>2</integer>
<key>DefaultBrowserPromptingState3</key>
<integer>2</integer>
<key>DidShowWhatsNewInSafari</key>
<true/>
<key>HistoryAgeInDaysLimit</key>
<integer>31</integer>
<key>HomePage</key>
<string>https://nodemixaholic.com/homepage/</string>
<key>NewTabBehavior</key>
<integer>0</integer>
<key>NewWindowBehavior</key>
<integer>0</integer>
<key>PayloadDisplayName</key>
<string>Safari</string>
<key>PayloadIdentifier</key>
<string>com.apple.Safari.357B7D12-2B0B-41AF-B55E-9902EA904CCB</string>
<key>PayloadType</key>
<string>com.apple.Safari</string>
<key>PayloadUUID</key>
<string>357B7D12-2B0B-41AF-B55E-9902EA904CCB</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
<dict>
<key>DisableDeveloperTools</key>
<false/>
<key>DisableFeedbackCommands</key>
<true/>
<key>DisableFirefoxScreenshots</key>
<true/>
<key>DisableFirefoxStudies</key>
<true/>
<key>DisablePocket</key>
<true/>
<key>DontCheckDefaultBrowser</key>
<true/>
<key>EnterprisePoliciesEnabled</key>
<true/>
<key>HardwareAcceleration</key>
<true/>
<key>Homepage</key>
<dict>
<key>URL</key>
<string>https://nodemixaholic.com/homepage/</string>
</dict>
<key>NewTabPage</key>
<false/>
<key>OverrideFirstRunPage</key>
<string>https://nodemixaholic.com/homepage/</string>
<key>PDFjs</key>
<dict>
<key>EnablePermissions</key>
<false/>
<key>Enabled</key>
<true/>
</dict>
<key>PayloadDisplayName</key>
<string>Firefox</string>
<key>PayloadIdentifier</key>
<string>org.mozilla.firefox.4694BEB3-B04F-4181-8924-42EB75EA9E3E</string>
<key>PayloadType</key>
<string>org.mozilla.firefox</string>
<key>PayloadUUID</key>
<string>4694BEB3-B04F-4181-8924-42EB75EA9E3E</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>PromptForDownloadLocation</key>
<true/>
<key>SearchBar</key>
<string>unified</string>
<key>SearchEngines</key>
<dict>
<key>Add</key>
<array>
<dict>
<key>Description</key>
<string>Brave Search</string>
<key>Method</key>
<string>GET</string>
<key>Name</key>
<string>Brave</string>
<key>URLTemplate</key>
<string>https://search.brave.com/search?q={searchTerms}</string>
</dict>
</array>
</dict>
</dict>
<dict>
<key>CloudExtensionRequestEnabled</key>
<false/>
<key>CloudReportingEnabled</key>
<false/>
<key>DefaultSearchProviderIconURL</key>
<string>https://cdn.search.brave.com/serp/v2/_app/immutable/assets/favicon.acxxetWH.ico</string>
<key>DefaultSearchProviderName</key>
<string>Brave+NodeMixaholic</string>
<key>DefaultSearchProviderNewTabURL</key>
<string>https://nodemixaholic.com/homepage</string>
<key>DefaultSearchProviderSearchURL</key>
<string>https://search.brave.com/search?q={searchTerms}</string>
<key>DefaultSearchProviderSuggestURL</key>
<string>https://example.com/fakeSuggest?q={searchTerms}</string>
<key>HomepageLocation</key>
<string>https://nodemixaholic.com/homepage/</string>
<key>NewTabPageLocation</key>
<string>https://nodemixaholic.com/homepage/</string>
<key>PayloadDisplayName</key>
<string>Google Chrome</string>
<key>PayloadIdentifier</key>
<string>com.google.Chrome.A3A60697-023E-4E37-9B41-7403D002E11C</string>
<key>PayloadType</key>
<string>com.google.Chrome</string>
<key>PayloadUUID</key>
<string>A3A60697-023E-4E37-9B41-7403D002E11C</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>ReportSafeBrowsingData</key>
<false/>
<key>RestoreOnStartup</key>
<integer>5</integer>
</dict>
</array>
<key>PayloadDescription</key>
<string>Sets macOS settings for Sneed Group.</string>
<key>PayloadDisplayName</key>
<string>Sneed Group Settings</string>
<key>PayloadIdentifier</key>
<string>com.nodemixaholic.nogatekeepandlockdown</string>
<key>PayloadOrganization</key>
<string>Sneed Group</string>
<key>PayloadScope</key>
<string>System</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>8C129FB8-B5D2-4777-8607-D03488EB98DE</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</plist>