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.
This commit is contained in:
Caesar Kabalan 2016-12-23 20:12:50 -07:00
parent 6ac0915906
commit fe6dfe2faa

View file

@ -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])