Reputation: 1598
I'm trying to completely automate setting up a new Ubuntu instance and am wondering if anybody knows how to programmatically apply your license key from a bash script. Any takers?
Upvotes: 1
Views: 810
Reputation: 1
For SublimeText 3 (at least) the following applies:
~/.config/sublime-text-3/Local/License.sublime_license
~/.config/sublime-text-3/Local/
would require creation beforehand.License.sublime_license
needs to have, as a payload, the plaintext variant for it to be processed on sublime startup.Upvotes: 0
Reputation: 20348
It should be enough to copy License.sublime_license
file (which contains your license key) to ~/.config/sublime-text-2/Settings/
.
Upvotes: 1