Made slightly nicer

This commit is contained in:
Benjamyn Love 2024-03-10 22:59:12 +11:00
parent e070e55cd2
commit df7368d458

View File

@ -10,6 +10,9 @@ pub fn change_wallpapers(wallpapers: &Wallpapers) {
command.arg(wallpapers.random_selection(monitor).to_string());
}
let _result = command.output();
println!("{:?}", command.get_args());
let result = command.output();
match result {
Ok(_) => {}
Err(e) => println!("{}", e),
}
}