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(())
}