More cleanup

This commit is contained in:
Benjamyn Love 2024-03-10 19:33:29 +11:00
parent 57bb7bcd8d
commit 9acf2e656a

View File

@ -1,6 +1,5 @@
mod config; mod config;
mod enums; mod enums;
use enums::*;
mod files; mod files;
use files::*; use files::*;
mod handlers; mod handlers;
@ -9,9 +8,5 @@ fn main() {
let mut wallpapers = Wallpapers::new(); let mut wallpapers = Wallpapers::new();
wallpapers.load_all(); wallpapers.load_all();
wallpapers.random_selection(&MonitorType::Ultrawide); handlers::plasma::change_wallpapers(&wallpapers);
wallpapers.random_selection(&MonitorType::Horizontal);
wallpapers.random_selection(&MonitorType::Vertical);
let resp = handlers::plasma::change_wallpapers(&wallpapers);
// println!("{}", resp);
} }