/rivalcolor

Automatically cycle between colors on a Steel Series rival mouse

Primary LanguagePythonOtherNOASSERTION

This is a project to make rival mice automatically transition between different colors.

It is mostly made for personal usage, but I put it on github for convenience.

Dependencies

You can install rivalcfg with:

pip install rivalcfg

Running

You can run with python rival.py

Running automatically with upstart

If you're running ubuntu or similar, you may want this to run automatically in the background. You can add something like this to /etc/init/rivalcolor.conf:

description "Rivalcolor daemon"

start on runlevel [2345]
stop on runlevel [!2345]

respawn

kill timeout 20


script
        exec python $REPO_ROOT/rival.py
end script