22 lines
613 B
Markdown
22 lines
613 B
Markdown
# EyeStrainReminder
|
|
|
|
A small background tool to remind the user of the "20-20-20" rule. Uses system notifications and sound cues. Made primarily for GNU/Linux, but might work with other environments.
|
|
|
|
First, you might need these packages:
|
|
```
|
|
sudo apt-get install python-gobject libnotify-bin python-gst-1.0
|
|
```
|
|
|
|
Second, just install the tool and required [Python modules](setup.py) by cloning the repository and running:
|
|
```
|
|
cd EyeStrainReminder
|
|
pip install . --user
|
|
```
|
|
Run it simply with, or preferably put it to run on boot as:
|
|
```
|
|
$ eyestrainreminder
|
|
```
|
|
Or to remove:
|
|
```
|
|
pip uninstall EyeStrainReminder
|
|
``` |