Add tty working dir and hold
This commit is contained in:
parent
bf66f31735
commit
fa744071f8
3 changed files with 56 additions and 5 deletions
|
|
@ -188,6 +188,10 @@ pub struct Profile {
|
|||
pub syntax_theme_light: String,
|
||||
#[serde(default)]
|
||||
pub tab_title: String,
|
||||
#[serde(default)]
|
||||
pub working_directory: String,
|
||||
#[serde(default)]
|
||||
pub hold: bool,
|
||||
}
|
||||
|
||||
impl Default for Profile {
|
||||
|
|
@ -198,6 +202,8 @@ impl Default for Profile {
|
|||
syntax_theme_dark: COSMIC_THEME_DARK.to_string(),
|
||||
syntax_theme_light: COSMIC_THEME_LIGHT.to_string(),
|
||||
tab_title: String::new(),
|
||||
working_directory: String::new(),
|
||||
hold: true,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue