Web-Font-Load
Web-Font-Load copied to clipboard
Windows Version?
Is there a Windows version for this?
Not unless someone puts in a pull request. I only have a Mac
Sent from my iPhone
On Apr 27, 2016, at 1:00 PM, Teshka [email protected] wrote:
is there a Windows version for this?
— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub
For all you Windows users out there (doh!)
@Echo Off
for /r "C:\Users\NAME\Desktop\download %%x in (*.ttf) do move "%%x" "C:\Users\NAME\Desktop\fonts"
Exit
- Create a folder on your desktop named "download".
- Create a folder on your desktop named "fonts".
- Go to https://github.com/google/fonts/tarball/master and save the zip file.
- Open the zip file and extract all content to the desktop folder "download".
- Open notepad
- Paste the content shown above and replace NAME with the name of the logged user.
- Go to File > Save as. Name the file "fonts.bat" and make sure u change the file type to "All files". Save the file on your desktop.
- Right click fonts.bat and click "Execute as administrator".
- All font files have been moved from the folder "download" to the folder "fonts".
- Click start en type "fonts" > this will open up your font library.
- Now just select all font files in the folder "fonts" with ctrl + a and drag-and-drop them onto you fonts library. This will install all 1700+ fonts.
Regards, TK
Your script is missing a quote. It should be:
@Echo Off
for /r "C:\Users\NAME\Desktop\download" %%x in (*.ttf) do move "%%x" "C:\Users\NAME\Desktop\fonts"
Exit
Otherwise, it works great