feat: drop clipboard-master dependency

It's just a busy loop this thing is completely unnecessary
This commit is contained in:
Harsh Shandilya 2023-12-23 15:42:03 +05:30
parent 32bc894f0a
commit c698b9d509
4 changed files with 12 additions and 87 deletions

View file

@ -25,8 +25,7 @@ fn main() -> Result<()> {
std::fs::read_to_string(config_path.as_path()).unwrap_or_default();
let config: Replacements = toml::from_str(&config_str)?;
config.validate()?;
monitor(config);
Ok(())
monitor(config)
}
fn check_for_version_arg() -> bool {