0.6.0 #1

Merged
pogmommy merged 89 commits from 0.6.0 into main 2025-07-04 20:29:26 -07:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 6db0f95c57 - Show all commits

View file

@ -58,10 +58,10 @@ fn main() {
let use_wayland = opts.force_wayland || detected_wayland; let use_wayland = opts.force_wayland || detected_wayland;
#[cfg(all(feature = "wayland", feature = "x11"))] #[cfg(all(feature = "wayland", feature = "x11"))]
let result = if use_wayland { let result = if use_wayland {
log::info!("Running on wayland. force_wayland={}, detected_wayland={}", opts.force_wayland, detected_wayland); log::debug!("Running on wayland. force_wayland={}, detected_wayland={}", opts.force_wayland, detected_wayland);
run::<display_backend::WaylandBackend>(opts, eww_binary_name) run::<display_backend::WaylandBackend>(opts, eww_binary_name)
} else { } else {
log::info!("Running on X11. force_wayland={}, detected_wayland={}", opts.force_wayland, detected_wayland); log::debug!("Running on X11. force_wayland={}, detected_wayland={}", opts.force_wayland, detected_wayland);
run::<display_backend::X11Backend>(opts, eww_binary_name) run::<display_backend::X11Backend>(opts, eww_binary_name)
}; };