From 1d8a7f2b2f9097b8b6c7b61b15ac6cfa40b0552a Mon Sep 17 00:00:00 2001 From: Matt Rose Date: Fri, 30 Oct 2020 12:05:27 -0400 Subject: [PATCH] pass original working directory to dbus_options as well --- terminator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminator b/terminator index 808888c7..40d52097 100755 --- a/terminator +++ b/terminator @@ -68,7 +68,6 @@ if __name__ == '__main__': dbg ("%s starting up, version %s" % (APP_NAME, APP_VERSION)) OPTIONS,dbus_options = terminatorlib.optionparse.parse_options() - if OPTIONS.configjson: configjson = ConfigJson() layoutname = configjson.extend_config(OPTIONS.configjson) @@ -104,6 +103,7 @@ if __name__ == '__main__': # (the -x argument for example) if OPTIONS.working_directory is None: OPTIONS.working_directory = ORIGCWD + dbus_options['working_directory'] = ORIGCWD optionslist = dbus.Dictionary(dbus_options, signature='ss') if OPTIONS.new_tab: dbg('Requesting a new tab')