Crate wallpaper[][src]

Expand description

This library gets and sets the desktop wallpaper/background.

The supported desktops are:

  • Windows
  • macOS
  • GNOME
  • KDE
  • Cinnamon
  • Unity
  • Budgie
  • XFCE
  • LXDE
  • MATE
  • Deepin
  • i3 (set only)

Examples

extern crate wallpaper;

fn main() {
    println!("{:?}", wallpaper::get());
    wallpaper::set_from_path("/usr/share/backgrounds/gnome/Tree.jpg").unwrap();
    wallpaper::set_mode(wallpaper::Mode::Crop).unwrap();
    println!("{:?}", wallpaper::get());
}

Enums

Functions

Returns the wallpaper of the current desktop.

Sets the wallpaper for the current desktop from a file path.