diff --git a/local/recipes/system/redbear-hwutils/source/src/bin/redbear-phase2-wayland-check.rs b/local/recipes/system/redbear-hwutils/source/src/bin/redbear-phase2-wayland-check.rs index 3d9f965a..f48ead18 100644 --- a/local/recipes/system/redbear-hwutils/source/src/bin/redbear-phase2-wayland-check.rs +++ b/local/recipes/system/redbear-hwutils/source/src/bin/redbear-phase2-wayland-check.rs @@ -593,7 +593,7 @@ mod tests { #[cfg(target_os = "redox")] #[test] fn detect_compositor_process_matches_kwin_wrapper_line() { - let output = "123 kwin_wayland_wrapper --virtual\n"; + let output = "123 redbear-compositor --virtual\n"; assert_eq!(detect_compositor_process(output), Some("kwin_wayland")); } diff --git a/local/recipes/system/redbear-hwutils/source/src/bin/redbear-phase4-kde-check.rs b/local/recipes/system/redbear-hwutils/source/src/bin/redbear-phase4-kde-check.rs index 3f0e6490..66983e04 100644 --- a/local/recipes/system/redbear-hwutils/source/src/bin/redbear-phase4-kde-check.rs +++ b/local/recipes/system/redbear-hwutils/source/src/bin/redbear-phase4-kde-check.rs @@ -336,7 +336,7 @@ fn check_kf6_library_versions() -> Check { fn check_plasma_binaries() -> Check { let required = [ "/usr/bin/redbear-kde-session", - "/usr/bin/kwin_wayland_wrapper", + "/usr/bin/redbear-compositor", "/usr/bin/plasmashell", "/usr/bin/kded6", ]; diff --git a/local/recipes/wayland/redbear-compositor/source/src/bin/redbear-compositor-check.rs b/local/recipes/wayland/redbear-compositor/source/src/bin/redbear-compositor-check.rs index c7d3cb11..d6e0a58c 100644 --- a/local/recipes/wayland/redbear-compositor/source/src/bin/redbear-compositor-check.rs +++ b/local/recipes/wayland/redbear-compositor/source/src/bin/redbear-compositor-check.rs @@ -460,7 +460,7 @@ fn check_binaries() -> Result<(), Vec> { "/usr/bin/redbear-greeterd", "/usr/bin/redbear-greeter-ui", "/usr/bin/redbear-authd", - "/usr/bin/kwin_wayland_wrapper", + "/usr/bin/redbear-compositor", ] { if !std::path::Path::new(bin).exists() { missing.push(bin.to_string());