8 个稳定版本

3.2.0 2021年7月9日
3.1.1 2021年7月6日
3.1.0 2021年6月30日
2.0.1 2019年1月31日
1.0.0 2018年7月18日

#645 in GUI

Download history • Rust 包仓库 200/week @ 2024-04-23 • Rust 包仓库 172/week @ 2024-04-30 • Rust 包仓库 168/week @ 2024-05-07 • Rust 包仓库 160/week @ 2024-05-14 • Rust 包仓库 180/week @ 2024-05-21 • Rust 包仓库 190/week @ 2024-05-28 • Rust 包仓库 149/week @ 2024-06-04 • Rust 包仓库 141/week @ 2024-06-11 • Rust 包仓库 164/week @ 2024-06-18 • Rust 包仓库 165/week @ 2024-06-25 • Rust 包仓库 21/week @ 2024-07-02 • Rust 包仓库 93/week @ 2024-07-09 • Rust 包仓库 150/week @ 2024-07-16 • Rust 包仓库 129/week @ 2024-07-23 • Rust 包仓库 236/week @ 2024-07-30 • Rust 包仓库 161/week @ 2024-08-06 • Rust 包仓库

每月下载量 697
用于 12 个 Crates (11 个直接使用)

Unlicense

21KB
528

wallpaper crate docs

此 Rust 库用于获取和设置桌面壁纸/背景。

支持的桌面环境有

  • Windows
  • macOS
  • GNOME
  • KDE
  • Cinnamon
  • Unity
  • Budgie
  • XFCE
  • LXDE
  • MATE
  • Deepin
  • 大多数 Wayland 合成器(仅设置,需要 swaybg)
  • i3(仅设置,需要 feh)

示例

use wallpaper;

fn main() {
    // Returns the wallpaper of the current desktop.
    println!("{:?}", wallpaper::get());
    // Sets the wallpaper for the current desktop from a file path.
    wallpaper::set_from_path("/usr/share/backgrounds/gnome/adwaita-day.png").unwrap();
    // Sets the wallpaper style.
    wallpaper::set_mode(wallpaper::Mode::Crop).unwrap();
    // Returns the wallpaper of the current desktop.
    println!("{:?}", wallpaper::get());
}

如果您想通过 URL 设置图片作为背景,请确保在 Cargo.toml 中激活 wallpaper crate 的 from_url 功能

[dependencies]
wallpaper = { version = "3", features = ["from_url"] }

然后在 main.rs 中

use wallpaper;

fn main() {
    // Returns the wallpaper of the current desktop.
    println!("{:?}", wallpaper::get());
    // Sets the wallpaper for the current desktop from a URL.
    wallpaper::set_from_url("https://source.unsplash.com/random").unwrap();
    // Returns the wallpaper of the current desktop.
    println!("{:?}", wallpaper::get());
}

依赖项

~0.3–13MB
~143K SLoC