Last active
April 21, 2020 00:59
-
-
Save pestilence669/91d7ecf4b8226a8950ef to your computer and use it in GitHub Desktop.
macOS "defaults" customizations
This file contains 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
#!/bin/bash | |
# vim: set ts=4 sw=4 noet fileencoding=utf-8: | |
# disable the accent menu in macOS, when you hold keys like "e" | |
# enable repeat / use ⌥ instead. | |
defaults write -g ApplePressAndHoldEnabled -bool false | |
# basic dock preferences | |
defaults write com.apple.dock orientation -string left | |
defaults write com.apple.dock autohide -int 1 | |
defaults write com.apple.dock magnification -int 1 | |
defaults write com.apple.dock tilesize -int 128 | |
defaults write com.apple.dock mineffect -string scale | |
# make dock not sluggish | |
defaults write com.apple.dock autohide-time-modifier -float 0.5 | |
defaults write com.apple.dock autohide-delay -float 0.05 | |
defaults write com.apple.dock expose-animation-duration -float 0.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment