This Rust library gets and sets the desktop wallpaper/background.
The supported desktops supported are as follows:
extern crate wallpaper; fn main() { println!("{:?}", wallpaper::get()); wallpaper::set_from_url("https://source.unsplash.com/random").unwrap(); println!("{:?}", wallpaper::get()); }