From b2a15d142b035fb23ed8935b5d5a8646d28b5824 Mon Sep 17 00:00:00 2001 From: Artem Sapegin Date: Fri, 4 Oct 2013 17:13:41 +0400 Subject: [PATCH] OSX: Tweak Mission Control. --- setup/osx.sh | 11 +++++------ sublime/User/Preferences.sublime-settings | 2 +- tilde/bash_profile.bash | 1 - 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/setup/osx.sh b/setup/osx.sh index 280153e..116effc 100755 --- a/setup/osx.sh +++ b/setup/osx.sh @@ -310,9 +310,8 @@ defaults write com.apple.dock launchanim -bool false # Speed up Mission Control animations defaults write com.apple.dock expose-animation-duration -float 0.1 -# Don’t group windows by application in Mission Control -# (i.e. use the old Exposé behavior instead) -defaults write com.apple.dock expose-group-by-app -bool false +# Group windows by application in Mission Control +defaults write com.apple.dock expose-group-by-app -bool true # Don’t show Dashboard as a Space defaults write com.apple.dock dashboard-in-overlay -bool true @@ -335,11 +334,11 @@ defaults write com.apple.dock autohide-time-modifier -float 0 # Disable icon bouncing (looks like it don't work) defaults write com.apple.dock no-bouncing -bool true -# Disable Space switching on Command-Tab -defaults write com.apple.dock workspaces-auto-swoosh -bool false +# Enable Space switching on Command-Tab +defaults write com.apple.dock workspaces-auto-swoosh -bool true # Show only active applications -defaults write com.apple.dock static-only -bool TRUE +defaults write com.apple.dock static-only -bool true # Reset Launchpad find ~/Library/Application\ Support/Dock -name "*.db" -maxdepth 1 -delete diff --git a/sublime/User/Preferences.sublime-settings b/sublime/User/Preferences.sublime-settings index 1a0d07e..fb1bb61 100644 --- a/sublime/User/Preferences.sublime-settings +++ b/sublime/User/Preferences.sublime-settings @@ -10,7 +10,7 @@ "drag_text": true, "fallback_encoding": "Cyrillic (Windows 1251)", "font_face": "Consolas", - "font_size": 16.0, + "font_size": 17.0, "hayaku_CSS_colors_case": "lowercase", "hayaku_CSS_numbers_leading_zero": false, "hayaku_CSS_syntax_autoguess": diff --git a/tilde/bash_profile.bash b/tilde/bash_profile.bash index afb5aaa..bcbfdff 100644 --- a/tilde/bash_profile.bash +++ b/tilde/bash_profile.bash @@ -40,7 +40,6 @@ function _prepend_path() { # Extend $PATH [ -d /usr/local/bin ] && _prepend_path "/usr/local/bin" -[ -d /usr/local/share/python ] && _prepend_path "/usr/local/share/python" [ -d /usr/local/share/npm/bin ] && _prepend_path "/usr/local/share/npm/bin" [ -d /usr/local/opt/ruby/bin ] && _prepend_path "/usr/local/opt/ruby/bin" command -v brew >/dev/null 2>&1 && _prepend_path "$(brew --prefix coreutils)/libexec/gnubin"