feat: enhance configuration management and UI styling, remove unused theme module

This commit is contained in:
2026-03-15 18:31:22 +01:00
parent 3098a4be7c
commit 3093bc9124
7 changed files with 14 additions and 61 deletions

View File

@@ -105,10 +105,9 @@ impl AppLauncher for UnixAppLauncher {
.args(["-selection", "clipboard"])
.stdin(Stdio::piped())
.spawn()
&& let Some(stdin) = child.stdin.as_mut()
{
if let Some(stdin) = child.stdin.as_mut() {
let _ = stdin.write_all(val.as_bytes());
}
let _ = stdin.write_all(val.as_bytes());
}
}
}