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

fix: error when using with swaybar_command

This commit is contained in:
Jake Stanger 2022-08-22 23:08:41 +01:00
parent ab8f7ecfc8
commit f2ee2dfe7a
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61

View file

@ -89,7 +89,9 @@ async fn main() -> Result<()> {
}
});
app.run();
// Ignore CLI args
// Some are provided by swaybar_config but not currently supported
app.run_with_args(&Vec::<&str>::new());
Ok(())
}