Add tty working dir and hold

This commit is contained in:
Dominic Gerhauser 2024-04-14 21:17:32 +02:00 committed by Jeremy Soller
parent bf66f31735
commit fa744071f8
3 changed files with 56 additions and 5 deletions

View file

@ -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,
}
}
}