0.0.1 • Published 1 year ago

tauri-plugin-wallpaper v0.0.1

Weekly downloads
-
License
mit
Repository
github
Last release
1 year ago

Tauri Plugin Wallpaper (✨)

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


license issues


Getting Started (✅)

  • Installation (⏬)

    • cargo

      cargo install tauri-plugin-wallpaper
    • npm

      npm install tauri-plugin-wallpaper

How to use (🌠)

  • cargo
use tauri_plugin_wallpaper::Wallpaper;

fn main() {
  tauri::Builder::default().plugin(
    Wallpaper::init(),
  );
}

//

// to attach
Wallpaper::attach( & wallpaper_window);
// to detach
Wallpaper::detach( & wallpaper_window);
  • npm
  import wallpaper from "tauri-plugin-wallpaper";

wallpaper.attach();
// or
const windowLabel = "My Window Label";
wallpaper.attach(windowLabel);

// to detach
wallpaper.detach();

The End (💘)

0.0.1

1 year ago