From cf25d2ea303b98cc319565cc4a1e80358bb08458 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 2 Feb 2020 17:01:48 +0300 Subject: [PATCH] Feat(python/init.py): Add more dark terminals Add `cygwin` and `putty`. --- lib/python/init.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/python/init.py b/lib/python/init.py index f828226..7f04849 100644 --- a/lib/python/init.py +++ b/lib/python/init.py @@ -80,8 +80,10 @@ def init(): # terminal term = os.environ.get('TERM', '') - if 'linux' in term: - background = 'dark' + for _term in ['cygwin', 'linux', 'putty']: + if _term in term: + background = 'dark' + break else: background = os.environ.get('BACKGROUND', 'light').lower() @@ -89,7 +91,8 @@ def init(): # https://mail.python.org/pipermail/python-list/2001-March/112696.html _term_found = False - for _term in ['linux', 'rxvt', 'screen', 'term', 'vt100']: + for _term in ['cygwin', 'linux', 'putty', 'rxvt', + 'screen', 'term', 'vt100']: if _term in term: _term_found = True break -- 2.39.2