larsmagne / meme

An Emacs meme generator
https://lars.ingebrigtsen.no/2016/06/27/an-emacs-meme-generator/
178 stars 9 forks source link

See [[https://lars.ingebrigtsen.no/2014/11/13/welcome-new-emacs-developers/][Welcome New Emacs Developers]] for simple instructions on how to do this.

** imgur.el library

Meme.el depends on [[https://github.com/larsmagne/imgur.el][imgur.el]]. Download it and put it in your ~load-path~.

** Microsoft True Type Fonts You will also need to get the correct fonts, *** Ubuntu

+BEGIN_SRC shell

$ apt install ttf-mscorefonts-installer

+END_SRC

*** Arch Linux Using an AUR wrapper,

+BEGIN_SRC shell

$ pacaur -S ttf-ms-fonts fontconfig-ttf-ms-fonts

+END_SRC

+BEGIN_SRC emacs-lisp

(add-to-list 'load-path "/path/to/src/meme") (require 'meme) (autoload 'meme "meme.el" "Create a meme from a collection" t) (autoload 'meme-file "meme.el" "Create a meme from a file" t)

+END_SRC