Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 805 Bytes

File metadata and controls

29 lines (16 loc) · 805 Bytes

OLED Screensaver

A simple cross-platform screensaver program for OLED monitors to prevent burn-in.

Description

This program creates a full-screen black window immediately upon startup. It displays nothing but a black screen and exits when any key is pressed or the mouse is clicked.

Purpose

Walking away from your monitor for a bit? Turn this on. Keep your investment safe.

Requirements

  • Python 3.x with Tkinter (included by default on most systems)

Usage

Build and run!

The program will go full-screen immediately. Press any key or click the mouse to exit.

Build

  • MacOS: pyinstaller screensaver.py --noconsole -i "icon.ico"
  • Windows: pyinstaller screensaver.py --noconsole --onefile -i "icon.ico"

Notes

  • The program uses Tkinter for cross-platform compatibility.