usebevy::prelude::Resource;/// Selects which monitor(s) should display the wallpaper.
#[derive(Default, Clone, Copy, Debug, Resource)]pubenumWallpaperTargetMonitor{/// Uses the primary monitor of the system.
#[default]
Primary,/// Uses the monitor with the specified index.
Index(usize),/// Uses all monitors as one large logical desktop.
All,}