From d0ac642f716db634d1dadea51559658dcbcca1e1 Mon Sep 17 00:00:00 2001 From: Matt Rose Date: Tue, 8 Sep 2020 11:18:52 -0400 Subject: [PATCH] fix login_shell option so that it sends -l rather than -shell --- terminatorlib/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index e8876518..30639ba1 100644 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -1460,7 +1460,7 @@ class Terminal(Gtk.VBox): shell = util.shell_lookup() if self.config['login_shell']: - args.insert(0, "-%s" % shell) + args.insert(0, "-l") else: args.insert(0, shell)