docs.rs failed to build tauri-plugin-wallpaper-2.0.0-beta
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
tauri-plugin-wallpaper-2.0.2
Tauri Plugin Wallpaper (✨)
A Tauri plugin to set your window as wallpaper behind desktop icons
Available platforms (🚧)
- Windows
- MacOS
- Linux
Getting Started (✅)
-
Installation (⏬)
-
cargo
-
npm
-
How to use (🌠)
- cargo
- npm
import wallpaper from "tauri-plugin-wallpaper";
// or import { attach, detach, reset } from "tauri-plugin-wallpaper";
// Attach current window as wallpaper
wallpaper.attach();
// or using window label identifier
wallpaper.attach("window-label");
// detach current window from wallpaper
wallpaper.detach();
// or using window label identifier
wallpaper.detach("window-label");
// reset wallpaper
wallpaper.reset();