Allow install script to set macos settings
This commit is contained in:
parent
5644cb980c
commit
934bdd5ee5
38
configs/macos/set-defaults.sh
Normal file
38
configs/macos/set-defaults.sh
Normal file
@ -0,0 +1,38 @@
|
||||
#! /bin/bash
|
||||
set -ex
|
||||
|
||||
# Apple Screenshots
|
||||
defaults write com.apple.screencapture location -string '~/Pictures/Screenshots'
|
||||
defaults write com.apple.screencapture location-last -string '~/Pictures/Screenshots'
|
||||
defaults write com.apple.screencaptureui NSNavLastRootDirectory -string '~/Pictures/Screenshots'
|
||||
|
||||
# Accessibility
|
||||
defaults write com.apple.Accessibility ReduceMotionEnabled -bool true
|
||||
|
||||
# Trackpad Tap to Click
|
||||
defaults write com.apple.AppleMultitouchTrackpad Clicking -bool true
|
||||
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
|
||||
|
||||
# Gestures
|
||||
defaults write com.apple.dock showAppExposeGestureEnabled -bool true
|
||||
|
||||
# Dock
|
||||
defaults write com.apple.dock tilesize -int 47
|
||||
defaults write com.apple.dock show-recents -bool false
|
||||
defaults write com.apple.dock launchanim -bool false
|
||||
|
||||
# Desktop
|
||||
defaults write com.apple.WindowManager StandardHideDesktopIcons -bool true
|
||||
|
||||
# Mos: Trackpad & Mouse Settings
|
||||
defaults write com.caldis.Mos precision -int 1
|
||||
defaults write com.caldis.Mos reverse -int 0
|
||||
defaults write com.caldis.Mos smooth -int 1
|
||||
defaults write com.caldis.Mos speed -int 3
|
||||
defaults write com.caldis.Mos step -int 35
|
||||
defaults write com.caldis.Mos duration -float 3.9
|
||||
|
||||
# iTerm2
|
||||
defaults write com.googlecode.iterm2 FocusFollowsMouse -bool true
|
||||
defaults write com.googlecode.iterm2 HideScrollbar -bool true
|
||||
defaults write com.googlecode.iterm2 NeverBlockSystemShutdown -bool true
|
@ -145,5 +145,10 @@ if [ -d ~/.config/blender/3.6 ]; then ln -sf $EWCONFIG_ROOT/configs/blender/3.x/
|
||||
sh ./configs/gnome/gnome-terminal-settings.sh || true
|
||||
sh ./configs/gnome/desktop-settings.sh || true
|
||||
|
||||
# On MacOS, write default settings
|
||||
if [ "$(uname)" == "Darwin" ]; then
|
||||
sh ./configs/macos/set-defaults.sh
|
||||
fi
|
||||
|
||||
# Attempt to force a termux settings reload on Android devices
|
||||
termux-reload-settings || true
|
||||
|
Loading…
x
Reference in New Issue
Block a user