-
Notifications
You must be signed in to change notification settings - Fork 0
/
osx
executable file
·44 lines (28 loc) · 938 Bytes
/
osx
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
#!/usr/bin/env bash
# ==============
# === Finder ===
# ==============
# show hidden files by default
defaults write com.apple.finder AppleShowAllFiles -bool true
# Display full POSIX path as window title
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
# Allow text selection in QuickLook
defaults write com.apple.finder QLEnableTextSelection -bool true
# ===================
# === Screenshots ===
# ===================
# Change Screenshots location
defaults write com.apple.screencapture location ~/Screenshots
# ================
# === Keyboard ===
# ================
# Disable long-press diacritics prompt in favor of key repeat
defaults write -g ApplePressAndHoldEnabled -bool false
# ============
# === Misc ===
# ============
# Stop printing "Last login ..." line in new shells
touch ~/.hushlogin
# ====================================
# Finally, reload the changed defaults
killall SystemUIServer