Last active
August 29, 2015 14:16
-
-
Save rwilcox/988dd34fdfe37290c09f to your computer and use it in GitHub Desktop.
Turn BBEdit into a distraction free writing environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "BBEdit" | |
tell window 1 | |
set show line numbers to (not show line numbers) | |
set show toolbar to (not show toolbar) | |
set show gutter to (not show gutter) | |
set show navigation bar to (not show navigation bar) | |
-- set show status bar to false | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment