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:
parent
931807e326
commit
c2d55a1963
4 changed files with 8 additions and 0 deletions
|
@ -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,
|
||||
|
||||
|
|
|
@ -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,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue