-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.mac-init.sh
52 lines (40 loc) · 2.16 KB
/
.mac-init.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
#!/bin/bash -eu
if [ "$(uname)" = "Darwin" ]; then
# ネットワークドライブで.DS_Store 等の作成を抑制する
## https://support.apple.com/ja-jp/HT208209
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
# USBストレージで.DS_Store 等の作成を抑制する
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool TRUE
# Bluetoothの音質周りの設定
## https://minatokobe.com/wp/os-x/mac/post-75289.html
## aptXを有効化
sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true
## AACを有効化
sudo defaults write bluetoothaudiod "Enable AAC codec" -bool true
## bitpoolの最低値を上げて、Bluetoothヘッドフォン/ヘッドセットの音質を向上させる
### https://news.mynavi.jp/article/osxhack-63/
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" -int 40
# Mission Control
## 左下 → 画面ロック
defaults write com.apple.dock wvous-bl-corner -int 13
defaults write com.apple.dock wvous-bl-modifier -int 0
# 不可視ファイルを表示
defaults write com.apple.finder AppleShowAllFiles YES
# 全ての拡張子のファイルを表示する
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
# 自動大文字の無効化
defaults write NSGlobalDomain NSAutomaticCapitalizationEnabled -bool false
# フルキーボードアクセスを有効
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3
# 起動音を小さく
sudo nvram SystemAudioVolume=%01
# キーのリピート
defaults write NSGlobalDomain KeyRepeat -int 2
# リピート入力認識までの時間
defaults write NSGlobalDomain InitialKeyRepeat -int 15
# デフォルトをplainTextに
defaults write com.apple.TextEdit RichText -int 0
# Bluetoothイヤホンでミュージックが起動しないように
## https://blue-bear.jp/kb/mac-bluetooth%E3%82%A4%E3%83%A4%E3%83%9B%E3%83%B3%E3%82%92%E6%8E%A5%E7%B6%9A%E3%81%99%E3%82%8B%E3%81%A8%E3%83%9F%E3%83%A5%E3%83%BC%E3%82%B8%E3%83%83%E3%82%AF%E3%81%8C%E8%B5%B7%E5%8B%95%E3%81%99/
launchctl unload -w /System/Library/LaunchAgents/com.apple.rcd.plist
fi