Skip to content

Latest commit

 

History

History
316 lines (302 loc) · 38.3 KB

File metadata and controls

316 lines (302 loc) · 38.3 KB

macOS

macOS is incredible as a personal OS. Would love to join Apple and contribute to the OS at some point. Karabiner is life changing.

Quill is great for signing binaries for macOS.

Clean install

You can clean install by going to Recovery mode (restart with cmd+r pressed). Then Disk Utility > Select disk > Erase (Format it) > Close Disk Utility > Select option Reinstall MacOS (Choose macOS ver. to install).

Notes

Code

macOS Defaults

# Remove dock animation. https://www.reddit.com/r/apple/comments/6xg9xq/tip_of_the_day_one_thing_i_cant_live_without_in/
defaults write com.apple.dock autohide-delay -int 0
defaults write com.apple.dock autohide-time-modifier -float 0.4
killall Dock

# Revert
defaults delete com.apple.dock autohide-delay
defaults delete com.apple.dock autohide-time-modifier
killall Dock
# Turn internal keyboard off. https://discussions.apple.com/thread/5044946?answerId=26556362022#26556362022
sudo kextunload /System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCKeyboard.kext/

# Turn internal keyboard on
sudo kextload /System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCKeyboard.kext/

Links