From e89966e1507ef6f10fb30e9973d3a742d10f96c0 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Tue, 15 Aug 2023 10:56:40 +0400 Subject: Change default command to alacritty --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.rs b/src/main.rs index d87a3a27..0bc75103 100644 --- a/src/main.rs +++ b/src/main.rs @@ -101,7 +101,7 @@ fn main() { let res = if let Some(command) = &cli.command { std::process::Command::new(command).spawn() } else { - std::process::Command::new("weston-terminal").spawn() + std::process::Command::new("alacritty").spawn() }; if let Err(err) = res { warn!("error spawning command: {err}"); -- cgit