As it was found out in the comments , OP actually wanted to open images in full-tty environment ,i.e., not in graphical environment.
Natively there are no apps that will allow to open images in full-text environment, however one can install fbi
package with the following command
sudo apt-get install fbi
The fbi package operates on rendering the image and writing it into framebuffer memory location , which is reference by /dev/fb0
device.
To ensure you don't need sudo
privilege to run fbi
, add yourself to the video group with the following command:
sudo usermod -a -G video $USER
Logout and log back in. At this point you can open images with:
fbi path/to/image.png
For more advanced use of package fbi
check out one of my other answer about setting TTY background.
echo "$DISPLAY"
andecho "$XAUTHORITY"
? – heemayl Jan 09 '16 at 21:42fbi
package – Sergiy Kolodyazhnyy Jan 09 '16 at 21:45