README 748 B

123456789101112131415161718192021222324
  1. FBpic is a simple command to view ppm files on the linux frame buffer.
  2. There are no command line switches, the ppm file is just read in
  3. from stdin. You must have your framebuffer set up to display graphics
  4. (@16bpp).
  5. EXAMPLES:
  6. To display the image /fancyboot/images/main.ppm on the console:
  7. cat '/fancyboot/images/main.ppm'|fbpic
  8. To scale and display a jpg on the console via Imagemagik:
  9. convert /fancyboot/images/ntpd.png -scale 1024x768! ppm:-|fbpic
  10. Simple one line slideshow:
  11. setterm -cursor off;find /path/to/pics/*.jpg|while read; do
  12. convert -scale 1024x768! ppm:-|fbpic;sleep 2;done;setterm -cursor on
  13. Change "scale" to your frame buffer resolution, change /path/to/pics/
  14. to point to a folder of jpgs and sleep for the delay.