]> git.phdru.name Git - dotfiles.git/commitdiff
Feat(python/init.py): Add more dark terminals
authorOleg Broytman <phd@phdru.name>
Sun, 2 Feb 2020 14:01:48 +0000 (17:01 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 2 Feb 2020 14:02:47 +0000 (17:02 +0300)
Add `cygwin` and `putty`.

lib/python/init.py

index f828226c9576264e0fcd931fe7f5056a809982e0..7f048490b041dacf3f1a89a098fb3d23b3a4dac9 100644 (file)
@@ -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