iced_core/window/settings/
linux.rs

1//! Platform specific settings for Linux.
2
3/// The platform specific window settings of an application.
4#[derive(Debug, Clone, PartialEq, Eq, Default)]
5pub struct PlatformSpecific {
6    /// Sets the application id of the window.
7    ///
8    /// As a best practice, it is suggested to select an application id that match
9    /// the basename of the application’s .desktop file.
10    pub application_id: String,
11
12    /// Whether bypass the window manager mapping for x11 windows
13    ///
14    /// This flag is particularly useful for creating UI elements that need precise
15    /// positioning and immediate display without window manager interference.
16    pub override_redirect: bool,
17}