diff options
author | Andrew Kennedy <akennedy2292@gmail.com> | 2013-06-05 22:01:08 -0400 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2013-06-06 13:41:25 +0200 |
commit | 475402ab4dc796b8e69542587d0926d5e3d30c7a (patch) | |
tree | bc8021287702abff760f32233e1c4e51d4526b45 | |
parent | 4f48f250197668f2d961a71ef733b37675f810fa (diff) | |
download | dotfiles-475402ab4dc796b8e69542587d0926d5e3d30c7a.tar.gz dotfiles-475402ab4dc796b8e69542587d0926d5e3d30c7a.tar.bz2 dotfiles-475402ab4dc796b8e69542587d0926d5e3d30c7a.zip |
.osx: Don’t automatically rearrange Spaces
Closes #213.
-rwxr-xr-x | .osx | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -329,11 +329,14 @@ defaults write com.apple.dock expose-animation-duration -float 0.1 # (i.e. use the old Exposé behavior instead) defaults write com.apple.dock expose-group-by-app -bool false +# Disable Dashboard +defaults write com.apple.dashboard mcx-disabled -bool true + # Don’t show Dashboard as a Space defaults write com.apple.dock dashboard-in-overlay -bool true -# Disable Dashboard -defaults write com.apple.dashboard mcx-disabled -bool true +# Don’t automatically rearrange Spaces based on most recent use +defaults write com.apple.dock mru-spaces -bool false # Remove the auto-hiding Dock delay defaults write com.apple.dock autohide-delay -float 0 |