diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-02-16 19:53:06 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-02-16 19:53:06 +0100 |
commit | 06f7f1f9f25cbf6ca947f3bb6a6ed4fd7b7e3c4d (patch) | |
tree | 5a00eb582f0d41fd72b97c3b7c79d08f43c59081 /src/monitor.py | |
parent | m todo (diff) | |
download | blueshift-06f7f1f9f25cbf6ca947f3bb6a6ed4fd7b7e3c4d.tar.gz blueshift-06f7f1f9f25cbf6ca947f3bb6a6ed4fd7b7e3c4d.tar.bz2 blueshift-06f7f1f9f25cbf6ca947f3bb6a6ed4fd7b7e3c4d.tar.xz |
working with some exceptions
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/monitor.py')
-rw-r--r-- | src/monitor.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/monitor.py b/src/monitor.py index b8f5cff..b2bfa84 100644 --- a/src/monitor.py +++ b/src/monitor.py @@ -17,6 +17,8 @@ import sys +from curve import * + # /usr/lib LIBDIR = 'bin' sys.path.append(LIBDIR) @@ -43,6 +45,7 @@ def translate_to_integers(): def close_c_bindings(): global randr_opened if randr_opened: + randr_opened = False randr_close() |