-
Notifications
You must be signed in to change notification settings - Fork 0
/
.macos
executable file
·58 lines (49 loc) · 2.43 KB
/
.macos
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
#!/usr/bin/env bash
# Clock
## 日時フォーマットを変更
defaults write com.apple.menuextra.clock DateFormat -string "EEE MMM d H:mm"
## セパレーターを秒間隔で点滅
defaults write com.apple.menuextra.clock FlashDateSeparators -bool true
# Trackpad
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -bool true
defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
defaults write com.apple.AppleMultitouchTrackpad TrackpadRightClick -bool true
## 軌道の速さ
defaults write NSGlobalDomain com.apple.trackpad.scaling 1.5
# System
## SMB共有上の.DS_Storeファイルを読み取らない
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
# スクリーンショットに影を付けない
defaults write com.apple.screencapture disable-shadow -bool true
## スペルの訂正を無効にする
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
# Dock
## Dockを自動で非表示
defaults write com.apple.dock autohide -bool true
# Sound
sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true
sudo defaults write bluetoothaudiod "Enable AAC codec" -bool true
# Network
## Google Public DNSを設定する
networksetup -setdnsservers Wi-Fi 2001:4860:4860::8844 2001:4860:4860::8888 8.8.4.4 8.8.8.8
# Finder
## 拡張子を常に表示
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
## 隠しファイルや隠しフォルダを表示
defaults write com.apple.finder AppleShowAllFiles -bool true
## 最近使ったタグを非表示
defaults write com.apple.finder ShowRecentTags -bool false
## ゴミ箱を空にする前の警告の無効化
defaults write com.apple.finder WarnOnEmptyTrash -bool false
## Finder のタイトルバーにフルパスを表示する
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
## スペルの訂正を無効にする
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
# iCloud
## デフォルトの保存先をiCloudからローカルのストレージに変更
defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false
# Music
## Apple Musicが勝手に立ち上がらないようにする
launchctl unload -w /System/Library/LaunchAgents/com.apple.rcd.plist