added suport for ~/.terminatorrc file

This commit is contained in:
Nicolas Valcarcel 2008-02-19 19:50:10 -05:00
parent 74e6e0b2ab
commit f4321af68b
1 changed files with 12 additions and 0 deletions

View File

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