Add app id setting for linux

This commit is contained in:
Cory Forsstrom 2023-07-21 13:57:49 -07:00 committed by Héctor Ramón Jiménez
parent 6d5b69d307
commit 94e991a785
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
2 changed files with 38 additions and 1 deletions

View file

@ -0,0 +1,11 @@
//! Platform specific settings for Linux.
/// The platform specific window settings of an application.
#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct PlatformSpecific {
/// Sets the application id of the window.
///
/// As a best practice, it is suggested to select an application id that match
/// the basename of the applications .desktop file.
pub application_id: String,
}