aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-04-11 12:18:59 +0200
committerMattias Andrée <maandree@operamail.com>2014-04-11 12:18:59 +0200
commite8c089f705df478f13f6744cca3927b06ef46e15 (patch)
tree9c313decc96a2b1e83919de8b505ccea98a23d26
parentdaemon bug fix + daemon continuously sends status (diff)
downloadnightshift-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-xsrc/nightshift.py2
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':