A curated list of arrrrrrrrr!
This file contains hidden or 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
| cask_args appdir: "/Applications" | |
| tap "homebrew/cask-fonts" | |
| brew "mas" | |
| #### LAPTOPS #### | |
| #cask "tripmode" | |
| #### LAPTOPS #### | |
| mas "Boop", id: 1518425043 |
If you're using a high-end bluetooth headset on your Macbook Pro it's likely your mac is using an audio codec which favors battery efficiency over high quality. This results in a drastic degradation of sound, the SBC codec is the likely culprit, read more about it here.
This file contains hidden or 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
| # Credit: pwnsdx https://gist.github.com/pwnsdx/1217727ca57de2dd2a372afdd7a0fc21; nebular https://gist.github.com/pwnsdx/d87b034c4c0210b988040ad2f85a68d3#gistcomment-3019082 | |
| # IMPORTANT: Don't forget to logout from your Apple ID in the settings before running it! | |
| # IMPORTANT: You will need to disable SIP: Reboot to Recovery, in Terminal csrutil disable | |
| # WARNING: It might disable things that you may not like. Please double check the services in the TODISABLE vars. | |
| # Get active services: launchctl list | grep -v "\-\t0" | |
| # Find a service: grep -lR [service] /System/Library/Launch* /Library/Launch* ~/Library/LaunchAgents | |
| # List disabled services: launchctl print-disabled user/501 |grep true & launchctl print-disabled system |grep true |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| # I use MacOS VMs from github for iOS development. | |
| # By no suprise they are a bit slow and have a lot of things I don't use | |
| # Hence this script for lighter and better VM for my iOS development and builds | |
| # GUI and animation related things to tweak | |
| defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false | |
| defaults write NSGlobalDomain NSWindowResizeTime -float 0.001 | |
| defaults write -g QLPanelAnimationDuration -float 0 | |
| defaults write com.apple.dock autohide-time-modifier -float 0 | |
| defaults write com.apple.dock launchanim -bool false | |
| sudo sysctl debug.lowpri_throttle_enabled=0 |
This file contains hidden or 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
| <?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>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <key>PayloadDescription</key> | |
| <string>Disable Apple Music in Music.app</string> | |
| <key>PayloadDisplayName</key> |
These are VMs running built with JavaScript/WASM allowing you to run an operating system within your browser, all client side.
This file contains hidden or 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 is only run on my MBA with Monterey. Please use this at your own risk. | |
| # Disable all animations. | |
| sudo defaults write com.apple.finder DisableAllAnimations -bool true | |
| sudo defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false | |
| sudo defaults write com.apple.dock launchanim -bool false | |
| sudo defaults write com.apple.dock expose-animation-duration -float 0.1 | |
| sudo defaults write NSGlobalDomain NSWindowResizeTime -float 0.001 | |
| sudo defaults write com.apple.Dock autohide-delay -float 0 | |
| sudo defaults write QLPanelAnimationDuration -float 0 |
