I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

1.5 KiB

Capture

Capturing images, screencasts, screenshots or live-streaming. It's defined in this file.

Screenshots

Download screenshot.el1 for taking screenshots of highlighted regions or entire buffers.

(straight-use-package 
  '(screenshot 
    :type git 
    :host github 
    :repo "tecosaur/screenshot"))

Screencasts

Create screencasts with one-frame-per-action GIF recording via Emacs gif screencast2.

  • Pause / Resume

  • High Quality

  • Optimized

(use-package gif-screencast
  :commands (gif-screencast-start-or-stop gif-screencast-toggle-pause)
  :custom (gif-screencast-output-directory (concat dotfiles/home "docs/images/")))

Keybindings

  • Place keybindings for capturing the screen behind SPC s.

    • Screenshot with s

    • Screencast with c

(dotfiles/leader
  "s" '(:ignore t :which-key "Screen")
  "ss" '(screenshot :which-key "Screenshot")
  "sc" '(gif-screencast-start-or-stop :which-key "Screencast"))

Footnotes