From 6252772417872ff189aaf818b132c4c7b9c2b77b Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 15 Dec 2014 05:16:35 -0800 Subject: [PATCH] tweaks. --- resources/osx.sh | 12 ------------ tasks/osx.py | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/resources/osx.sh b/resources/osx.sh index dc1506c9..b8d96338 100755 --- a/resources/osx.sh +++ b/resources/osx.sh @@ -1,4 +1,3 @@ - # Ask for the administrator password upfront sudo -v @@ -10,13 +9,6 @@ echo "Configuring osx." # General UI/UX # ############################################################################### -# Menu bar: hide the Time Machine, Volume, User, and Bluetooth icons -for domain in ~/Library/Preferences/ByHost/com.apple.systemuiserver.*; do - defaults write "${domain}" dontAutoLoad -array \ - "/System/Library/CoreServices/Menu Extras/TimeMachine.menu" \ - "/System/Library/CoreServices/Menu Extras/Volume.menu" \ - "/System/Library/CoreServices/Menu Extras/User.menu" - # Remove duplicates in the “Open With” menu (also see `lscleanup` alias) /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user @@ -168,7 +160,6 @@ defaults write com.apple.finder OpenWindowForNewRemovableDisk -bool true # Show item info near icons on the desktop and in other icon views /usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist -/usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist /usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist # Show item info to the right of the icons on the desktop @@ -176,17 +167,14 @@ defaults write com.apple.finder OpenWindowForNewRemovableDisk -bool true # Enable snap-to-grid for icons on the desktop and in other icon views /usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist -/usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist /usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist # Increase grid spacing for icons on the desktop and in other icon views /usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist -/usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist /usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist # Increase the size of icons on the desktop and in other icon views /usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:iconSize 80" ~/Library/Preferences/com.apple.finder.plist -/usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:iconSize 80" ~/Library/Preferences/com.apple.finder.plist /usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:iconSize 80" ~/Library/Preferences/com.apple.finder.plist # Use list view in all Finder windows by default diff --git a/tasks/osx.py b/tasks/osx.py index 67f62d92..ab23c965 100644 --- a/tasks/osx.py +++ b/tasks/osx.py @@ -16,7 +16,7 @@ def setup(ctx): set_path_for_launchd(ctx) install_rvm(ctx) install_powerline_monaco(ctx) - osx_config(ctx) + setup_dbus(ctx) @ctask def macvim(ctx):