3

I have a python script that, when executed, wait's until it gets input from the user. I now want to know if it is posible to keep showing an image fullscreen until the user has given the input? I have searched for a solution but all i can find are tools that window managers to show the picture, but this is not installed. It'll probably only run on Debian.

I'm kind of searching for the same idea as omxplayer, but instead of movies it has to display pictures.

Pedro Romano
  • 10,519
  • 3
  • 42
  • 49
MegaWubs
  • 614
  • 1
  • 8
  • 17

1 Answers1

3

Using pygame is probably the easiest way of displaying an image fullscreen on the Linux framebuffer or on the X Windows root window (i.e. without a window manager).

The answers to the question Frame buffer module of python have all the details on how to achieve this.

Community
  • 1
  • 1
Pedro Romano
  • 10,519
  • 3
  • 42
  • 49