diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-24 17:35:21 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-26 02:15:17 +0100 |
commit | 0208372e56d8eceac8d42b7ffd193c748a867280 (patch) | |
tree | b5c8eea6ec45d02a00e943682ab02fa0cd4773b7 /misc/fbdump/fbdump.rst | |
parent | a90a23fa4ad4c775db726859ec6a72c04321f0ea (diff) |
misc/fbdump: Updated for version 0.4.2, new maintainer.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'misc/fbdump/fbdump.rst')
-rw-r--r-- | misc/fbdump/fbdump.rst | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/misc/fbdump/fbdump.rst b/misc/fbdump/fbdump.rst new file mode 100644 index 0000000000000..0b61bb6ec98e4 --- /dev/null +++ b/misc/fbdump/fbdump.rst @@ -0,0 +1,78 @@ +.. RST source for fbdump(1) man page. Convert with: +.. rst2man.py fbdump.rst > fbdump.1 +.. rst2man.py comes from the SBo development/docutils package. + +.. |version| replace:: 0.4.2 +.. |date| date:: + +.. converting from pod: +.. s/B<\([^>]*\)>/**\1**/g +.. s/I<\([^>]*\)>/*\1*/g + +====== +fbdump +====== + +------------------------------------------------------------- +Dumps the contents of the framebuffer to stdout as a PPM file +------------------------------------------------------------- + +:Manual section: 1 +:Manual group: SlackBuilds.org +:Date: |date| +:Version: |version| + +SYNOPSIS +======== + +fbdump [*-fb <device>*] [*-vt <terminal>*] [*-delay <sec>*] + +DESCRIPTION +=========== + +fbdump is a simple tool that captures the contents of the visible portion +of the Linux framebuffer device and writes it to the standard output as +a PPM file. In other words, it takes a screenshot of anything running on +the framebuffer. It currently has fairly complete support for packed-pixel +framebuffer types and also works with the VGA16 framebuffer driver. + +OPTIONS +======= + +**-fb** *device* + Path to the framebuffer device to dump. Default: */dev/fb0*. + +**-vt** *terminal* + Bring virtual terminal number *terminal* to the foreground before dumping. + Default: dump current foreground terminal. + +**-delay** *sec* + Wait *sec* seconds before dumping. Default: dump immediately. + +--help + Display usage and exit. + +EXAMPLES +======== + +To dump the framebuffer as a PNG image: + + fbdump | pnmtopng > grab.png + +COPYRIGHT +========= + +See the file /usr/doc/fbdump-|version|/COPYING for license information. + +AUTHORS +======= + +fbdump was written by Richard Drummond <evilrich@rcdrummond.net>. + +This man page written for the SlackBuilds.org project +by B. Watson, and is licensed under the WTFPL. + +SEE ALSO +======== + +The fbdump homepage: http://www.rcdrummond.net/fbdump/ |