Skip to content

Instantly share code, notes, and snippets.

@daveaspinall
Last active July 17, 2018 09:54
Show Gist options
  • Save daveaspinall/c915406673d8e4fc4c0e to your computer and use it in GitHub Desktop.
Save daveaspinall/c915406673d8e4fc4c0e to your computer and use it in GitHub Desktop.

Revisions

  1. Dave Aspinall revised this gist Sep 7, 2015. 1 changed file with 8 additions and 5 deletions.
    13 changes: 8 additions & 5 deletions typekit-sync.md
    Original file line number Diff line number Diff line change
    @@ -12,15 +12,18 @@ cd /Users/daveaspinall/Library/Application\ Support/Adobe/CoreSync/plugins/livet
    open .
    ```

    Install the [rename](http://plasmasturm.org/code/rename/) utility via brew (if you don't already have it):

    ```bash
    brew install rename
    ```

    Copy and Paste them to Dropbox (or wherever you want them), then:

    ```bash
    # Move to location in iTerm/Terminal
    cd /Users/daveaspinall/Dropbox/Resources/Fonts/Your\ Font

    # List fonts
    ls -la

    # Rename them
    mv .9938.otf MuseoSans_Rounded_300.otf
    # Rename them (dry run...remove the n to do the renaming)
    rename -nv 's/\.([^.]+)/$1/' \.*
    ```
  2. Dave Aspinall revised this gist Aug 28, 2015. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion typekit-sync.md
    Original file line number Diff line number Diff line change
    @@ -24,4 +24,3 @@ ls -la
    # Rename them
    mv .9938.otf MuseoSans_Rounded_300.otf
    ```

  3. Dave Aspinall revised this gist Aug 28, 2015. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions typekit-sync.md
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@

    Find the fonts you want to copy:

    ```
    ```bash
    # Show hidden files in Finder
    defaults write com.apple.finder AppleShowAllFiles YES

    @@ -14,7 +14,7 @@ open .

    Copy and Paste them to Dropbox (or wherever you want them), then:

    ```
    ```bash
    # Move to location in iTerm/Terminal
    cd /Users/daveaspinall/Dropbox/Resources/Fonts/Your\ Font

  4. Dave Aspinall revised this gist Aug 28, 2015. 1 changed file with 23 additions and 0 deletions.
    23 changes: 23 additions & 0 deletions typekit-sync.md
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,27 @@

    Find the fonts you want to copy:

    ```
    # Show hidden files in Finder
    defaults write com.apple.finder AppleShowAllFiles YES
    # Location of Typekit Synced fonts
    cd /Users/daveaspinall/Library/Application\ Support/Adobe/CoreSync/plugins/livetype/.r
    # Open in Finder to preview them
    open .
    ```

    Copy and Paste them to Dropbox (or wherever you want them), then:

    ```
    # Move to location in iTerm/Terminal
    cd /Users/daveaspinall/Dropbox/Resources/Fonts/Your\ Font
    # List fonts
    ls -la
    # Rename them
    mv .9938.otf MuseoSans_Rounded_300.otf
    ```

  5. Dave Aspinall revised this gist Aug 28, 2015. No changes.
  6. Dave Aspinall created this gist Aug 28, 2015.
    4 changes: 4 additions & 0 deletions typekit-sync.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@

    ```
    defaults write com.apple.finder AppleShowAllFiles YES
    ```