aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2023-08-15 10:56:40 +0400
committerIvan Molodetskikh <yalterz@gmail.com>2023-08-15 10:56:40 +0400
commite89966e1507ef6f10fb30e9973d3a742d10f96c0 (patch)
tree61f8825488688d585aab86c0d39200a303dd1c34 /src/main.rs
parentd19bfa3fc03305033ac7ad5052ff1479e82c65a5 (diff)
downloadniri-e89966e1507ef6f10fb30e9973d3a742d10f96c0.tar.gz
niri-e89966e1507ef6f10fb30e9973d3a742d10f96c0.tar.bz2
niri-e89966e1507ef6f10fb30e9973d3a742d10f96c0.zip
Change default command to alacritty
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
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}");