-
Notifications
You must be signed in to change notification settings - Fork 2
/
run_once_settings.sh
executable file
·88 lines (62 loc) · 3.59 KB
/
run_once_settings.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/bin/bash
SOURCE_DIR=$(chezmoi source-path)
. "$SOURCE_DIR/scripts/utils"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print_in_purple "System configuration\n"
ask_for_confirmation "Would you like to do it now?"
if ! answer_is_yes; then
exit
fi
ask_for_sudo
if [ "$SHELL" != "/opt/homebrew/bin/fish" ]; then
sudo sh -c 'echo /opt/homebrew/bin/fish >> /etc/shells'
chsh -s /opt/homebrew/bin/fish
print_result $? "Set shell to fish"
fi
execute "if [ ! -d $HOME/.config/nvim ]; then git clone git@github.com:joelazar/nvim-config.git $HOME/.config/nvim; fi;" "Clone neovim config repo"
execute "fish -c 'echo y | fish_config theme save Catppuccin\ Mocha'" "Set fish theme"
# settings based on https://mac-key-repeat.zaymon.dev/
execute "defaults write NSGlobalDomain KeyRepeat -int 1" "Keyboard: Set 15 ms key repeat"
execute "defaults write NSGlobalDomain InitialKeyRepeat -int 13" "Keyboard: Set 195 ms initial delay"
execute "defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false" "Keyboard: Disable tooltip when holding key"
execute 'sudo nvram SystemAudioVolume=" "' "Disable the sound effects on boot"
execute "defaults write NSGlobalDomain AppleShowAllExtensions -bool true" "Show all filename extensions"
execute "defaults write com.apple.dock autohide -bool true" "Automatically hide and show the Dock"
execute "defaults write com.apple.dock autohide-delay -float 0" "Remove the auto-hiding Dock delay"
execute "defaults write com.apple.dock autohide-time-modifier -float 0" "Remove the animation when hiding/showing the Dock"
execute "defaults write com.apple.LaunchServices LSQuarantine -bool false" "Disable the 'Are you sure you want to open this application?' dialog"
execute 'defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 64 "{enabled = 0; value = {};}"' "Disable Spotlight keyboard shortcut for Show Spotlight search"
execute 'defaults write com.apple.symbolichotkeys AppleSymbolicHotKeys -dict-add 65 "{enabled = 0; value = {};}"' "Disable Spotlight keyboard shortcut for Finder search window"
execute 'defaults write NSGlobalDomain AppleActionOnDoubleClick -string "Maximize"' "Double-click a window's title bar to minimize"
execute "defaults write com.apple.screencapture location ~/Pictures/screenshots/" "Save screenshots to the Pictures/screenshots directory"
# disable wakeup on bluetooth
# https://apple.stackexchange.com/questions/431812/how-can-i-stop-a-bluetooth-keyboard-from-waking-my-macbook-pro/437396#437396
if [ ! -f ~/.sleep ] || [ ! -f ~/.wakeup ]; then
echo "$(which blueutil) -p 0" >~/.sleep
echo "$(which blueutil) -p 1" >~/.wakeup
chmod 755 ~/.sleep ~/.wakeup
brew services restart sleepwatcher
print_result $? "Setup sleepwatcher"
else
print_success "Setup sleepwatcher"
fi
if [ -f ~/.docker/cli-plugins/docker-buildx ]; then
print_success "Docker buildx configured"
else
mkdir -p ~/.docker/cli-plugins
ln -sf /opt/homebrew/opt/docker-buildx/bin/docker-buildx ~/.docker/cli-plugins/docker-buildx
print_result $? "Docker buildx configured"
fi
# TODO: this might not work when there is a file available with the name sudo_local.template name
if [ -f /etc/pam.d/sudo_local ]; then
print_success "Enable touchid for sudo"
else
echo "auth sufficient pam_tid.so" | sudo tee -a /etc/pam.d/sudo_local
print_result $? "Enable touchid for sudo"
fi
# NOTE: the following configuration currently only possible to configure manually
# swap ctrl and function keys
# do not change input source for ctrl+space
# setup night shift
# update host
# allow apps downloaded from anywhere