From ea44427be3af0b400e08f598f35ad48e73bc60a1 Mon Sep 17 00:00:00 2001 From: Honza Pokorny Date: Fri, 6 Jan 2017 22:06:45 -0400 Subject: Add "shell" option to config This allows you to configure the shell to use when alacritty starts. cc: #122 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index d53daf0f..2cf6dc5a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -93,7 +93,7 @@ fn run(mut config: Config, options: cli::Options) -> Result<(), Box> { // The pty forks a process to run the shell on the slave side of the // pseudoterminal. A file descriptor for the master side is retained for // reading/writing to the shell. - let mut pty = tty::new(display.size()); + let mut pty = tty::new(&config, display.size()); // Create the pseudoterminal I/O loop // -- cgit v1.2.3-54-g00ecf