slackbuilds/graphics/fbpic
dsomero d0c108251a various: Update find command to match template.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
2013-11-22 02:37:19 -05:00
..
README graphics/fbpic: Updated website info. 2012-04-16 05:35:59 -05:00
doinst.sh graphics/fbpic: Added (display an image on the framebuffer) 2012-03-29 10:17:25 -05:00
fbpic.SlackBuild various: Update find command to match template. 2013-11-22 02:37:19 -05:00
fbpic.info Add REQUIRED field to .info files. 2012-08-19 21:57:51 -05:00
slack-desc various: Fix slack-desc formatting and comment nit picks. 2013-11-22 02:29:22 -05:00

README

FBpic is a simple command to view ppm files on the linux frame buffer.
There are no command line switches, the ppm file is just read in from
stdin.  You must have your framebuffer set up to display graphics (@16bpp).


EXAMPLES:

To display the image /fancyboot/images/main.ppm on the console:

  cat '/fancyboot/images/main.ppm'|fbpic

To scale and display a jpg on the console via Imagemagik:

  convert /fancyboot/images/ntpd.png -scale 1024x768! ppm:-|fbpic

Simple one line slideshow:

  setterm -cursor off;find /path/to/pics/*.jpg|while read; \
  do convert -scale 1024x768! ppm:-|fbpic;sleep 2;done;setterm -cursor on

Change "scale" to your frame buffer resolution, change /path/to/pics/
to point to a folder of jpgs and sleep for the delay.