1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-08-17 14:51:04 +02:00

Add documentation for launch_command

This commit is contained in:
Username404-59 2025-06-21 14:47:53 +02:00
parent 931807e326
commit c2d55a1963
No known key found for this signature in database
GPG key ID: F3A1878B14F5F0D7
4 changed files with 8 additions and 0 deletions

View file

@ -108,6 +108,9 @@ pub struct LauncherModule {
#[serde(default, flatten)]
layout: LayoutConfig,
/// Command used to launch applications.
///
/// **Default**: `gtk-launch`
#[serde(default = "default_launch_command")]
launch_command: String,

View file

@ -125,6 +125,9 @@ pub struct MenuModule {
#[serde(flatten)]
pub common: Option<CommonConfig>,
/// Command used to launch applications.
///
/// **Default**: `gtk-launch`
#[serde(default = "default_launch_command")]
pub launch_command: String,
}