Last active
July 17, 2018 09:54
-
-
Save daveaspinall/c915406673d8e4fc4c0e to your computer and use it in GitHub Desktop.
Revisions
-
Dave Aspinall revised this gist
Sep 7, 2015 . 1 changed file with 8 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal 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 # Rename them (dry run...remove the n to do the renaming) rename -nv 's/\.([^.]+)/$1/' \.* ``` -
Dave Aspinall revised this gist
Aug 28, 2015 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -24,4 +24,3 @@ ls -la # Rename them mv .9938.otf MuseoSans_Rounded_300.otf ``` -
Dave Aspinall revised this gist
Aug 28, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal 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 -
Dave Aspinall revised this gist
Aug 28, 2015 . 1 changed file with 23 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal 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 ``` -
Dave Aspinall revised this gist
Aug 28, 2015 . No changes.There are no files selected for viewing
-
Dave Aspinall created this gist
Aug 28, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ ``` defaults write com.apple.finder AppleShowAllFiles YES ```