EyeStrainReminder/README.md

22 lines
613 B
Markdown
Raw Normal View History

2019-10-20 23:04:03 +03:00
# EyeStrainReminder
2019-10-23 10:52:39 +03:00
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.
2019-10-21 00:14:56 +03:00
2019-10-22 14:43:20 +03:00
First, you might need these packages:
2019-10-21 00:14:56 +03:00
```
2019-10-24 15:13:46 +03:00
sudo apt-get install python-gobject libnotify-bin python-gst-1.0 python-wxgtk3.0
2019-10-22 14:43:20 +03:00
```
2019-10-23 10:10:26 +03:00
Second, just install the tool and required [Python modules](src/branch/master/setup.py) via:
2019-10-22 14:43:20 +03:00
```
2019-10-23 10:52:39 +03:00
cd EyeStrainReminder
pip install . --user
```
Run it simply with, or preferably put it to run on boot as:
```
$ eyestrainreminder
2019-10-22 14:43:20 +03:00
```
Or to remove:
```
2019-10-23 10:52:39 +03:00
pip uninstall EyeStrainReminder
2019-10-21 00:14:56 +03:00
```