diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-16 05:46:50 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-16 05:46:50 +0200 |
commit | 4ef6e083f45497a3d46153e8e4c39cbb7fd5b8f1 (patch) | |
tree | 88b0b6297d7fec446648de9c167918391ada14d9 | |
parent | fix version number (diff) | |
download | nightshift-4ef6e083f45497a3d46153e8e4c39cbb7fd5b8f1.tar.gz nightshift-4ef6e083f45497a3d46153e8e4c39cbb7fd5b8f1.tar.bz2 nightshift-4ef6e083f45497a3d46153e8e4c39cbb7fd5b8f1.tar.xz |
add close button0.3
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | src/interface.py | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/interface.py b/src/interface.py index 805d6e2..963f2a3 100644 --- a/src/interface.py +++ b/src/interface.py @@ -68,12 +68,14 @@ def ui_print(): print('\033[2KDayness: %.0f %%' % (red_period * 100)) print('\033[2KEnabled' 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') + print(_button(0) % ('Disable' if red_status else 'Enable'), end = ' ') + print(_button(1) % 'Kill', end = ' ') + print(_button(2) % 'Close') else: print('\033[2KNot running') print('\033[2K\n\033[2K', end = '') - print(_button(0, 1) % 'Revive') + print(_button(0, 1) % 'Revive', end = ' ') + print(_button(2) % 'Close') print('\033[J') @@ -86,14 +88,21 @@ def ui_read(): elif c == b'\t': red_condition.acquire() try: - ui_state['focus'] = 1 - ui_state['focus'] + if red_running: + ui_state['focus'] = (ui_state['focus'] + 1) % 3 + elif ui_state['focus'] == 2: + ui_state['focus'] = 0 + else: + ui_state['focus'] = 2 red_condition.notify() finally: red_condition.release() elif c in b' \n': red_condition.acquire() try: - if red_running: + if ui_state['focus'] == 2: + break + elif red_running: if ui_state['focus'] == 0: sock.sendall('toggle\n'.encode('utf-8')) else: |