Web-Font-Load icon indicating copy to clipboard operation
Web-Font-Load copied to clipboard

Windows Version?

Open Teshka opened this issue 9 years ago • 3 comments

Is there a Windows version for this?

Teshka avatar Apr 27 '16 17:04 Teshka

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

qrpike avatar Apr 27 '16 17:04 qrpike

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
  1. Create a folder on your desktop named "download".
  2. Create a folder on your desktop named "fonts".
  3. Go to https://github.com/google/fonts/tarball/master and save the zip file.
  4. Open the zip file and extract all content to the desktop folder "download".
  5. Open notepad
  6. Paste the content shown above and replace NAME with the name of the logged user.
  7. 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.
  8. Right click fonts.bat and click "Execute as administrator".
  9. All font files have been moved from the folder "download" to the folder "fonts".
  10. Click start en type "fonts" > this will open up your font library.
  11. 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

Tklaversma avatar May 02 '16 18:05 Tklaversma

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

flipcoder avatar Jun 30 '17 11:06 flipcoder