Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karimaziev/gif-extra
Enhance utils for gif-screencast.
https://github.com/karimaziev/gif-extra
Last synced: 4 days ago
JSON representation
Enhance utils for gif-screencast.
- Host: GitHub
- URL: https://github.com/karimaziev/gif-extra
- Owner: KarimAziev
- License: gpl-3.0
- Created: 2023-03-22T09:58:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-09T09:22:07.000Z (11 months ago)
- Last Synced: 2023-12-09T10:27:22.489Z (11 months ago)
- Language: Emacs Lisp
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* gif-extra
Extra Utils For gif-screencast.
** Installation
Emacs >= 26.1 is required.
*** Manual
Ensure that you have installed required dependencies:
- ~gif-screencast~ >= 1.2Download the source code and put it wherever you like, e.g. into =~/.emacs.d/gif-extra/=
#+begin_src shell :eval no
git clone https://github.com/KarimAziev/gif-extra.git ~/.emacs.d/gif-extra/
#+end_srcAdd the downloaded directory to the load path:
#+begin_src elisp :eval no
(add-to-list 'load-path "~/.emacs.d/gif-extra/")
(require 'gif-extra)
(gif-extra-global-mode)
#+end_src#+begin_src elisp :eval no
(use-package gif-extra
:straight (gif-extra
:repo "KarimAziev/gif-extra"
:type git
:host github)
:after (gif-screencast)
:demand t
:config (gif-extra-global-mode))
#+end_src