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
+38
View File
@@ -0,0 +1,38 @@
[package]
name = "desktop-icon-hider"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "desktop-icon-hider"
path = "src/main.rs"
[dependencies]
tray-icon = "0.24"
muda = "0.19"
windows-registry = "0.6"
image = { version = "0.25", default-features = false, features = ["png"] }
log = "0.4"
[dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Controls",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_System_Threading",
"Win32_System_Memory",
"Win32_System_Diagnostics_Debug",
"Win32_Graphics_Gdi",
"Win32_UI_HiDpi",
"Win32_Security",
]
[build-dependencies]
winresource = "0.1"
[profile.release]
opt-level = "s"
lto = true
strip = true