Initial Version of Desktop Icon Hider.

This commit is contained in:
jvthompson
2026-08-08 08:56:33 -05:00
commit d29a82a741
13 changed files with 2006 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
fn main() {
if std::env::var("CARGO_CFG_TARGET_OS").as_deref() == Ok("windows") {
let mut res = winresource::WindowsResource::new();
res.set_icon("assets/tray.ico");
res.compile().expect("failed to embed icon resource");
}
}