#tauri-plugin #wallpaper #window #desktop #icons #behind #set

tauri-plugin-wallpaper

A Tauri 插件,可将您的窗口设置为桌面图标后面的壁纸

1 个不稳定版本

0.0.1 2023年3月29日

#19 in #behind

MIT/Apache

7KB
104 代码行

Tauri 插件壁纸 (✨)

A Tauri 插件,可将您的窗口设置为桌面图标后面的壁纸


license issues


入门 (✅)

  • 安装 (⏬)

    • cargo

      cargo install tauri-plugin-wallpaper
      
    • npm

      npm install tauri-plugin-wallpaper
      

如何使用 (🌠)

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

结束 (💘)

依赖项

~20–75MB
~1M SLoC