diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-11 12:18:59 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-11 12:18:59 +0200 |
commit | e8c089f705df478f13f6744cca3927b06ef46e15 (patch) | |
tree | 9c313decc96a2b1e83919de8b505ccea98a23d26 | |
parent | daemon bug fix + daemon continuously sends status (diff) | |
download | nightshift-e8c089f705df478f13f6744cca3927b06ef46e15.tar.gz nightshift-e8c089f705df478f13f6744cca3927b06ef46e15.tar.bz2 nightshift-e8c089f705df478f13f6744cca3927b06ef46e15.tar.xz |
somethis we need to sleep when doing a panic kill
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rwxr-xr-x | src/nightshift.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nightshift.py b/src/nightshift.py index 97c4379..0804a7d 100755 --- a/src/nightshift.py +++ b/src/nightshift.py @@ -371,6 +371,8 @@ def use_client(sock, proc): proc.send_signal(signal.SIGUSR1) elif message == 'kill': proc.terminate() + import time + time.sleep(0.05) # XXX sometimes redshift is too slow elif message == 'close': closed = True elif message == 'listen': |