Skip to content

Commit

Permalink
Add command to show debug menu in iBooks
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Suttle committed Dec 9, 2013
1 parent 3dfb05d commit 195aa33
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .osx
Original file line number Diff line number Diff line change
Expand Up @@ -673,13 +673,22 @@ 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


###############################################################################
# iBooks #
###############################################################################

# Show debug menu in iBooks
defaults write com.apple.iBooksX BKShowDebugMenu -boolean true


###############################################################################
# Kill affected applications #
###############################################################################

for app in "Address Book" "Calendar" "Contacts" "Dock" "Finder" "Mail" \
"Messages" "Safari" "SizeUp" "SystemUIServer" "Terminal" "Transmission" \
"Twitter" "iCal"; do
"Twitter" "iCal" "iBooks"; do
killall "${app}" > /dev/null 2>&1
done
echo "Done. Note that some of these changes require a logout/restart to take effect."

0 comments on commit 195aa33

Please sign in to comment.