Change default command to alacritty

This commit is contained in:
Ivan Molodetskikh
2023-08-15 10:56:40 +04:00
parent d19bfa3fc0
commit e89966e150
+1 -1
View File
@@ -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}");