wallflow 0.5.2

Elegant wallpaper management with smooth transitions, powered by awww
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Windows wallpaper backends (stub for future implementation)

#[cfg(target_os = "windows")]
#[derive(Default)]
pub struct WindowsSystemParametersBackend;

#[cfg(target_os = "windows")]
impl WindowsSystemParametersBackend {
  pub fn new() -> Self {
    Self
  }
}