aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-05-06 17:03:07 +0200
committerMattias Andrée <maandree@operamail.com>2014-05-06 17:03:07 +0200
commit12c0122d3f2dfb65e3c50635c0f1e00d482bfcc1 (patch)
treeedd996b1d356a37ae73a47a7ef37165cf38a8f60
parentadd missing path for nightshiftrc (diff)
downloadnightshift-12c0122d3f2dfb65e3c50635c0f1e00d482bfcc1.tar.gz
nightshift-12c0122d3f2dfb65e3c50635c0f1e00d482bfcc1.tar.bz2
nightshift-12c0122d3f2dfb65e3c50635c0f1e00d482bfcc1.tar.xz
do not allow toggling while dying + change button text to 'Kill immediately' if redshift is already dying0.5
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rwxr-xr-xsrc/__main__.py5
-rw-r--r--src/interface.py18
2 files changed, 16 insertions, 7 deletions
diff --git a/src/__main__.py b/src/__main__.py
index 5e452df..0cd3aef 100755
--- a/src/__main__.py
+++ b/src/__main__.py
@@ -258,7 +258,7 @@ The pathname of the interprocess communication socket for nightshift
red_brightness, red_temperature = 1, 6500
red_brightnesses, red_temperatures = (1, 1), (5500, 3500)
red_period, red_location = 1, (0, 0)
-red_status, red_running = True, True
+red_status, red_running, red_dying = True, True, False
red_condition = None
@@ -349,6 +349,7 @@ def generate_status_message():
message += 'Longitude: %f\n' % red_location[1]
message += 'Enabled: %s\n' % ('yes' if red_status else 'no')
message += 'Running: %s\n' % ('yes' if red_running else 'no')
+ message += 'Dying: %s\n' % ('yes' if red_dying else 'no')
return message
@@ -359,6 +360,7 @@ def use_client(sock, proc):
@param sock:socket The socket connected to the client
@param proc:Popen The redshift process
'''
+ global red_dying
buf = ''
closed = False
while not closed:
@@ -380,6 +382,7 @@ def use_client(sock, proc):
elif message == 'toggle':
proc.send_signal(signal.SIGUSR1)
elif message == 'kill':
+ red_dying = True
proc.terminate()
import time
time.sleep(0.05) # XXX sometimes redshift is too slow
diff --git a/src/interface.py b/src/interface.py
index 963f2a3..9188326 100644
--- a/src/interface.py
+++ b/src/interface.py
@@ -66,10 +66,13 @@ def ui_print():
print('\033[2KTemperature: %.0f K (day: %.0f K, night: %.0f K)' % tuple(temperature))
print('\033[2KBrightness: %.0f %% (day: %.0f %%, night: %.0f %%)' % tuple(brightness))
print('\033[2KDayness: %.0f %%' % (red_period * 100))
- print('\033[2KEnabled' if red_status else 'Disabled')
+ print('\033[2K' + ('Dying' if red_dying else ('Enabled' if red_status else 'Disabled')))
print('\033[2K\n\033[2K', end = '')
- print(_button(0) % ('Disable' if red_status else 'Enable'), end = ' ')
- print(_button(1) % 'Kill', end = ' ')
+ if not red_dying:
+ print(_button(0) % ('Disable' if red_status else 'Enable'), end = ' ')
+ print(_button(1) % 'Kill', end = ' ')
+ else:
+ print(_button(0, 1) % 'Kill immediately', end = ' ')
print(_button(2) % 'Close')
else:
print('\033[2KNot running')
@@ -80,6 +83,7 @@ def ui_print():
def ui_read():
+ global red_dying
inbuf = sys.stdin.buffer
while True:
c = inbuf.read(1)
@@ -88,7 +92,7 @@ def ui_read():
elif c == b'\t':
red_condition.acquire()
try:
- if red_running:
+ if red_running and not red_dying:
ui_state['focus'] = (ui_state['focus'] + 1) % 3
elif ui_state['focus'] == 2:
ui_state['focus'] = 0
@@ -103,10 +107,11 @@ def ui_read():
if ui_state['focus'] == 2:
break
elif red_running:
- if ui_state['focus'] == 0:
+ if (not red_dying) and (ui_state['focus'] == 0):
sock.sendall('toggle\n'.encode('utf-8'))
else:
sock.sendall('kill\n'.encode('utf-8'))
+ red_dying = True
red_condition.notify()
else:
respawn_daemon()
@@ -161,7 +166,7 @@ def ui_status():
def ui_status_callback(status):
global red_brightness, red_temperature, red_brightnesses, red_temperatures
- global red_period, red_location, red_status, red_running
+ global red_period, red_location, red_status, red_running, red_dying
if status is not None:
brightness = [float(status['%s brightness' % k]) for k in ('Current', 'Daytime', 'Night')]
temperature = [float(status['%s temperature' % k]) for k in ('Current', 'Daytime', 'Night')]
@@ -173,6 +178,7 @@ def ui_status_callback(status):
red_location = (float(status['Latitude']), float(status['Longitude']))
red_status = status['Enabled'] == 'yes'
red_running = status['Running'] == 'yes'
+ red_dying = status['Dying'] == 'yes'
red_condition.notify()
finally:
red_condition.release()