fix(macos): settings and add finder

This commit is contained in:
Stefan Imhoff
2025-03-14 17:12:02 +01:00
parent 97e976d9b1
commit a9cd3d81e9
4 changed files with 13 additions and 6 deletions

View File

@@ -47,7 +47,7 @@ defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
# Reduce Motion # Reduce Motion
defaults write com.apple.universalaccess reduceMotion -bool true defaults write com.apple.Accessibility ReduceMotionEnabled -int 1
# Menu Bar Size # Menu Bar Size
defaults write NSGlobalDomain NSTitleBarSize 22 defaults write NSGlobalDomain NSTitleBarSize 22
@@ -191,11 +191,11 @@ defaults write com.apple.dock wvous-bl-modifier -int 0
# Enable full keyboard access for all controls (e.g. enable Tab in modal dialogs) # Enable full keyboard access for all controls (e.g. enable Tab in modal dialogs)
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 defaults write NSGlobalDomain AppleKeyboardUIMode -int 3
# Tracking speed: (default is 1.5 in GUI)
defaults read -g com.apple.trackpad.scaling
# Tracking speed: maximum 5.0 # Tracking speed: maximum 5.0
defaults write -g com.apple.trackpad.scaling 5.0 defaults write -g com.apple.trackpad.scaling -float 5.0
# Mouse Tracking speed: maximum 5.0
defaults write -g com.apple.mouse.scaling -float 1.5
# Trackpad: enable tap to click for this user and for the login screen # Trackpad: enable tap to click for this user and for the login screen
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true

View File

@@ -4,6 +4,9 @@
defaults export com.apple.symbolichotkeys ~/.dotfiles/private/preferences/keyboard_shortcuts.plist defaults export com.apple.symbolichotkeys ~/.dotfiles/private/preferences/keyboard_shortcuts.plist
defaults export com.apple.universalaccess ~/.dotfiles/private/preferences/universal_access_shortcuts.plist defaults export com.apple.universalaccess ~/.dotfiles/private/preferences/universal_access_shortcuts.plist
# Finder sidebar favorites
defaults export com.apple.finder ~/.dotfiles/private/preferences/finder.plist
# Export all Dock settings # Export all Dock settings
defaults export com.apple.dock ~/.dotfiles/private/preferences/dock.plist defaults export com.apple.dock ~/.dotfiles/private/preferences/dock.plist

View File

@@ -4,6 +4,10 @@
defaults import com.apple.symbolichotkeys ~/.dotfiles/private/preferences/keyboard_shortcuts.plist defaults import com.apple.symbolichotkeys ~/.dotfiles/private/preferences/keyboard_shortcuts.plist
defaults import com.apple.universalaccess ~/.dotfiles/private/preferences/universal_access_shortcuts.plist defaults import com.apple.universalaccess ~/.dotfiles/private/preferences/universal_access_shortcuts.plist
# Finder sidebar favorites
defaults import com.apple.finder ~/.dotfiles/private/preferences/finder.plist
killall Finder
# Remove default Dock and import all Dock settings # Remove default Dock and import all Dock settings
defaults delete com.apple.dock persistent-apps defaults delete com.apple.dock persistent-apps
defaults delete com.apple.dock persistent-others defaults delete com.apple.dock persistent-others

Submodule private updated: d6c02987d8...8dd1589c35