diff --git a/terminator b/terminator index 0fb130f4..3e26b75a 100755 --- a/terminator +++ b/terminator @@ -91,8 +91,20 @@ class TerminatorTerm: 'mouse_autohide' : True, } + if os.path.exists(pwd.getpwuid(os.getuid())[5] + "/.terminatorrc"): + f = open(pwd.getpwuid(os.getuid())[5] + "/.terminatorrc") + config = f.readlines() + f.close() + + for line in config: + line = line.strip() + if line: + (key,value) = line.split("=") + defaults[key.strip()]=value.strip() + matches = {} + def __init__ (self, terminator, profile = None, command = None): self.defaults['profile_dir'] = self.defaults['_profile_dir']%(self.defaults['gt_dir'])