A Tauri plugin to set your window as wallpaper behind desktop icons
cargo
bash
cargo install tauri-plugin-wallpaper
npm
bash
npm install tauri-plugin-wallpaper
```rust use tauripluginwallpaper::Wallpaper;
fn main() { tauri::Builder::default().plugin( Wallpaper::init(), ); }
//
// to attach Wallpaper::attach( & wallpaperwindow); // to detach Wallpaper::detach( & wallpaperwindow); ```
```ts import wallpaper from "tauri-plugin-wallpaper";
wallpaper.attach(); // or const windowLabel = "My Window Label"; wallpaper.attach(windowLabel);
// to detach wallpaper.detach(); ```