parent
f25ca4b70a
commit
6e746e30ee
2 changed files with 19 additions and 0 deletions
@ -0,0 +1,17 @@ |
||||
#[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>, |
||||
} |
Loading…
Reference in new issue