forked from boochtek/mac_config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter.sh
executable file
·30 lines (19 loc) · 1.05 KB
/
twitter.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
#!/bin/bash
## Configure Twitter.
## NOTE: The Twitter app is installed via the Mac App Store.
# Disable smart quotes as it’s annoying for tweets with code snippets.
defaults write com.twitter.twitter-mac AutomaticQuoteSubstitutionEnabled -bool false
# Show the app window when clicking the menu bar icon.
defaults write com.twitter.twitter-mac MenuItemBehavior -int 1
# Enable the hidden 'Develop' menu.
defaults write com.twitter.twitter-mac ShowDevelopMenu -bool true
# Enable the hidden 'Secret' preferences tab.
defaults write com.twitter.twitter-mac DebugMode -bool true
# Open links in the background.
defaults write com.twitter.twitter-mac openLinksInBackground -bool true
# Allow closing the 'New Tweet' window by pressing Escape.
defaults write com.twitter.twitter-mac ESCClosesComposeWindow -bool true
# Show full names rather than Twitter handles.
defaults write com.twitter.twitter-mac ShowFullNames -bool true
# Hide the app in the background if it's not the front-most window.
defaults write com.twitter.twitter-mac HideInBackground -bool true