Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save worldofgeese/00dda29a4fb37a6bfb4fd3826cbc82f0 to your computer and use it in GitHub Desktop.
Save worldofgeese/00dda29a4fb37a6bfb4fd3826cbc82f0 to your computer and use it in GitHub Desktop.

From doomemacs/doomemacs#2575 (comment):

Here are easy steps to get that done

  • Start emacs
  • M-x all-the-icons-install-fonts Provide a temp directory where you'd like the fonts to be downloaded (let's call it $tempFonts)

Then, using Powershell, you can install them for your user with this:

cd $tempFonts $destination = (New-Object -ComObject Shell.Application).Namespace(0x14) ls *.ttf | % { $destination.CopyHere($_.FullName, 0x10) } This takes a couple of seconds to complete, and you should see a pop-up for each font telling you that it is being installed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment