From fe6dfe2faa74ecaa789b20faf67f1354940cba09 Mon Sep 17 00:00:00 2001 From: Caesar Kabalan Date: Fri, 23 Dec 2016 20:12:50 -0700 Subject: [PATCH] Add PuTTY-related lines to update_all.py update_all.py is used to keep all color schemes in sync. Added lines to call xrdb2putty.py when other scripts are called. --- tools/update_all.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/update_all.py b/tools/update_all.py index 71ea299..3b9732d 100755 --- a/tools/update_all.py +++ b/tools/update_all.py @@ -21,3 +21,7 @@ if __name__ == '__main__': terminator_path = '../terminator/' print("--> " + terminator_path) subprocess.Popen(['./xrdb2terminator.py', '../xrdb/', '-d', terminator_path]) + + putty_path = '../putty/' + print("--> " + putty_path) + subprocess.Popen(['./xrdb2putty.py', '../xrdb/', '-d', putty_path])