Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create eye_saver #878

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions eye_saver/eye_saver
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Eye Saver
from plyer import notification # pip install pyler
import time

# It is recommended to follow the 20-20 rule
# i.e. taking a 20 second break after 20 minutes of looking at a screen
# this reduces the strain on your eyes

time.sleep(1200)
notification.notify(
app_name="Eye Saver",
title='Its been 20 minutes',
message='Close your eyes or look away for 20 seconds',
timeout=20
)