unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Screenshots, frame shots straight from Emacs
Date: Fri, 02 Jul 2021 17:34:15 +0200	[thread overview]
Message-ID: <877di8g26g.fsf@zoho.eu> (raw)
In-Reply-To: YN8LgzbzNmuU0rdh@protected.localdomain

Jean Louis wrote:

> (defvar frameshot-directory "~/Media/Pictures/Screenshots/"
>   "Default directory for frame shots")
>
> (defvar frameshot-format 'png
>   "Default frame shot format")

What's with all the global vars...

> (defun frameshot ()
>   "Save Emacs frame as frame shot.
> Directory is determined by variable `frameshot-directory' and if
> not defined, it will be saved in the `$HOME' directory."
>   (interactive)
>   (let* ((image (x-export-frames nil (or frameshot-format 'png)))
> 	 (base-directory (or frameshot-directory (getenv "HOME")))
> 	 (directory (concat (file-name-as-directory base-directory) (format-time-string "%Y/%m/%Y-%m-%d/")))
> 	 (file (concat directory (format-time-string "Screenshot-%Y-%m-%d-%T.") (symbol-name frameshot-format))))
>     (make-directory directory t)
>     (with-temp-file file
>       (insert image))
>     (find-file directory)
>     (message "Frame shot saved as `%s'" file)))

OK, cool.

This is what I do outside of Emacs (it can be used for Emacs
as well, if the VT is specified) - number 1, tty1 - or, again,
if invoked from Emacs with the designated defun.

The Linux VT / X issue, again, but here not really a problem
since so easy on both accounts. Or so good provided already,
maybe I should say.

#! /bin/zsh
#
# this file:
#   http://user.it.uu.se/~embe8573/conf/.zsh/dump
#   https://dataswamp.org/~incal/conf/.zsh/dump

last-arg () {
    echo ${@:${#@}}
}

dump-vt () {
    local vt=$1
    local file=$(last-arg $@).png # so it'll also work when $# = 1
    case $# in
        (1) fbgrab             $file ;;
        (2) sudo fbgrab -c $vt $file &&
            sudo chown $USER   $file &&
            sudo chgrp $USER   $file ;;
    esac
}
alias dumpvt=dump-vt

dump-x () {
    local name=$1
    local file=${name}.png
    local win_name=$2
    case $# in
        (1) gnome-screenshot -d 5  -f $file ;;
        (2) wmctrl -a $win_name             &&
            gnome-screenshot -w -B -f $file ;;
    esac 2> /dev/null
}

dump () {
    [[ $DISPLAY ]] && dump-x $@ || dump-vt $@
}

and from Emacs:

;;; -*- lexical-binding: t -*-
;;;
;;; this file:
;;;   http://user.it.uu.se/~embe8573/emacs-init/vt.el
;;;   https://dataswamp.org/~incal/emacs-init/vt.el

(defun dump (name)
  (interactive "sname: ")
  (message nil)
  (let ((file (format "~/%s.png" name)))
    (shell-command (format "fbgrab %s" file)) ))

-- 
underground experts united
https://dataswamp.org/~incal




  reply	other threads:[~2021-07-02 15:34 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-19 13:57 The convenient method to check/inspect/retrieve the definition/usage of any commands/symbols/operators used in elisp code Hongyi Zhao
2021-06-19 14:48 ` Omar Polo
2021-06-19 15:40   ` Hongyi Zhao
2021-06-19 15:57     ` Omar Polo
2021-06-19 17:09       ` Hongyi Zhao
2021-06-23  7:48         ` Omar Polo
2021-06-23  8:56           ` Hongyi Zhao
2021-06-23  9:17             ` Hongyi Zhao
2021-06-23  9:31               ` Screenshots, frame shots straight from Emacs Jean Louis
2021-06-25 22:04                 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-25 22:34                   ` Jean Louis
2021-06-25 23:55                     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-28  6:47                       ` Jean Louis
2021-07-01 21:01                         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-02 12:50                           ` Jean Louis
2021-07-02 15:34                             ` Emanuel Berg via Users list for the GNU Emacs text editor [this message]
2021-07-20 11:36                   ` Tomas Hlavaty
2021-07-20 17:42                     ` Leo Butler
2021-07-20 19:44                       ` Tomas Hlavaty
2021-07-20 20:21                         ` Leo Butler
2021-07-20 20:50                           ` Tomas Hlavaty
2021-07-31 23:25                             ` Tomas Hlavaty
2021-08-01  2:16                               ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-01  6:40                                 ` Tomas Hlavaty
2021-08-01  7:16                                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-08-01  7:42                                     ` Tomas Hlavaty
2021-08-02 13:57                                       ` Hongyi Zhao
2021-08-02 19:57                                         ` Tomas Hlavaty
2021-08-03  0:56                                           ` Hongyi Zhao
2021-08-01  2:59                               ` Eduardo Ochs
2021-07-20 21:51                           ` Stefan Monnier via Users list for the GNU Emacs text editor
2021-07-20 21:48                         ` Stefan Monnier via Users list for the GNU Emacs text editor
2021-07-21 19:17                           ` Leo Butler
2021-07-21 20:05                             ` Stefan Monnier
2021-07-21 21:44                               ` cl-lib questions (was: Re: Screenshots, frame shots straight from Emacs) Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-21 21:59                                 ` cl-lib questions Stefan Monnier via Users list for the GNU Emacs text editor
2021-07-21 22:09                                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-22  8:37                           ` Screenshots, frame shots straight from Emacs Tomas Hlavaty
2021-07-22 13:21                             ` Stefan Monnier
2021-07-22 18:19                               ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-23 11:38                                 ` Jean Louis
2021-08-01  1:38                                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-31 23:32                               ` Tomas Hlavaty
2021-07-23  1:30                             ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-31 23:31                           ` Tomas Hlavaty
2021-08-01 14:19                             ` Stefan Monnier
2021-07-21  3:34                     ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-21 17:21                       ` Leo Butler
2021-07-21 17:52                         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-22  8:26                         ` Tomas Hlavaty
2021-07-22  8:16                       ` Tomas Hlavaty
2021-07-23  0:52                 ` Hongyi Zhao
2021-07-23  1:35                   ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-23  1:55                     ` Hongyi Zhao
2021-07-23  5:51                   ` Jean Louis
2021-07-23  8:56                     ` Hongyi Zhao
2021-07-23 10:28                       ` Hongyi Zhao
2021-07-23 10:32                         ` Hongyi Zhao
2021-07-23 11:04                       ` Jean Louis
2021-07-23 11:41                         ` Hongyi Zhao
2021-07-24 15:22                           ` Hongyi Zhao
2021-07-23  9:16                     ` Hongyi Zhao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=877di8g26g.fsf@zoho.eu \
    --to=help-gnu-emacs@gnu.org \
    --cc=moasenwood@zoho.eu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).