1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-04 04:01:03 +02:00

feat(ipc): support for injecting additional stylesheets

This commit is contained in:
Jake Stanger 2023-06-24 11:19:57 +01:00
parent ded50cca6f
commit c6319b78fd
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
3 changed files with 23 additions and 2 deletions

View file

@ -27,4 +27,11 @@ pub enum Command {
/// Variable key.
key: Box<str>,
},
/// Load an additional CSS stylesheet.
/// The sheet is automatically hot-reloaded.
LoadCss {
/// The path to the sheet.
path: PathBuf,
},
}