Tauri Plugin Wallpaper (✨)
A Tauri plugin to set your window as wallpaper behind desktop icons
Getting Started (✅)
-
Installation (⏬)
-
cargo
-
npm
-
How to use (🌠)
- cargo
use Wallpaper;
//
// to attach
attach;
// to detach
detach;
- npm
import wallpaper from "tauri-plugin-wallpaper";
wallpaper.attach();
// or
const windowLabel = "My Window Label";
wallpaper.attach(windowLabel);
// to detach
wallpaper.detach();