19 lines
455 B
Markdown
19 lines
455 B
Markdown
# EyeStrainReminder
|
|
|
|
A small background tool to remind the user of the "20-20-20" rule. Uses system notifications and sound cues.
|
|
|
|
First, you might need these packages:
|
|
```
|
|
sudo apt-get install python-gobject libnotify-bin python-gst-1.0
|
|
|
|
pip3 install notify2 playsound --user
|
|
```
|
|
|
|
Second, just install the required [Python modules](src/branch/master/setup.py) via:
|
|
```
|
|
python setup.py install --user
|
|
```
|
|
Or to remove:
|
|
```
|
|
pip remove eyestrainreminder
|
|
``` |