You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
368 B
18 lines
368 B
3 years ago
|
#[derive(Serialize, Deserialize)]
|
||
|
pub struct Config {
|
||
|
launcher: Option<Launcher>,
|
||
|
format: Option<Format>,
|
||
|
}
|
||
|
|
||
|
#[derive(Serialize, Deserialize)]
|
||
|
pub struct Launcher {
|
||
|
executable: Option<String>,
|
||
|
args: Option<Vec<String>>,
|
||
|
}
|
||
|
|
||
|
#[derive(Serialize, Deserialize)]
|
||
|
pub struct Format {
|
||
|
window_format: Option<String>,
|
||
|
workspace_format: Option<String>,
|
||
|
}
|