diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-02-14 19:39:15 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-02-14 19:39:15 +0100 |
commit | adb7fc5d92e888bbcf9e721820bcdb3cecddcc7c (patch) | |
tree | 9ddf6fd4e2e9fc3974b03c4d11a449c44784551d | |
parent | add wait_period (diff) | |
download | blueshift-adb7fc5d92e888bbcf9e721820bcdb3cecddcc7c.tar.gz blueshift-adb7fc5d92e888bbcf9e721820bcdb3cecddcc7c.tar.bz2 blueshift-adb7fc5d92e888bbcf9e721820bcdb3cecddcc7c.tar.xz |
add variable monitor_controller
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rwxr-xr-x | src/__main__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/__main__.py b/src/__main__.py index 729d879..8bd6c05 100755 --- a/src/__main__.py +++ b/src/__main__.py @@ -69,8 +69,10 @@ def periodically(year, month, day, hour, minute, second, weekday, fade): ## Set globals accessible by rc periodically = None +monitor_controller = None wait_period = 60 -global DATADIR, i_size, o_size, r_curve, g_curve, b_curve, clip_result, periodically, wait_period +global DATADIR, i_size, o_size, r_curve, g_curve, b_curve, clip_result +global periodically, wait_period, monitor_controller ## Load extension and configurations via ponysayrc |