Tauri Plugin Wallpaper (✨)

A Tauri plugin to set your window as wallpaper behind desktop icons


![license](https://badgen.net/badge/license/MIT/blue) ![issues](https://badgen.net/github/issues/meslzy/tauri-plugin-wallpaper)

Getting Started (✅)

How to use (🌠)

```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(); ```


The End (💘)