Skip to content

Instantly share code, notes, and snippets.

@pestilence669
Last active April 21, 2020 00:59
Show Gist options
  • Save pestilence669/91d7ecf4b8226a8950ef to your computer and use it in GitHub Desktop.
Save pestilence669/91d7ecf4b8226a8950ef to your computer and use it in GitHub Desktop.
macOS "defaults" customizations
#!/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