tweaks.
This commit is contained in:
parent
ccb64c9af9
commit
6252772417
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
# Ask for the administrator password upfront
|
# Ask for the administrator password upfront
|
||||||
sudo -v
|
sudo -v
|
||||||
|
|
||||||
@ -10,13 +9,6 @@ echo "Configuring osx."
|
|||||||
# General UI/UX #
|
# 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)
|
# 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
|
/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
|
# 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 :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
|
/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
|
# 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
|
# 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 :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
|
/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
|
# 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 :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
|
/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
|
# 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 :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
|
/usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:iconSize 80" ~/Library/Preferences/com.apple.finder.plist
|
||||||
|
|
||||||
# Use list view in all Finder windows by default
|
# Use list view in all Finder windows by default
|
||||||
|
@ -16,7 +16,7 @@ def setup(ctx):
|
|||||||
set_path_for_launchd(ctx)
|
set_path_for_launchd(ctx)
|
||||||
install_rvm(ctx)
|
install_rvm(ctx)
|
||||||
install_powerline_monaco(ctx)
|
install_powerline_monaco(ctx)
|
||||||
osx_config(ctx)
|
setup_dbus(ctx)
|
||||||
|
|
||||||
@ctask
|
@ctask
|
||||||
def macvim(ctx):
|
def macvim(ctx):
|
||||||
|
Loading…
Reference in New Issue
Block a user