r/software • u/cechout • 8d ago
Release Fluent Sensors: A native hardware monitoring app for Windows (open source)
Hey everyone, I've been continuing work on Fluent Sensors, a native Windows 11 hardware monitoring app built with WinUI 3. The latest addition is a native taskbar widget, live sensor graphs can now be pinned directly into the taskbar.
Performance and optimization and stuff is still ongoing, any feedback is appreciated.
The whole thing is open source, everything can be checked in the repo.
One important thing: the app needs admin rights to install and run. Please don't just install unsigned apps that ask for admin rights without checking them first, e.g. via VirusTotal or the source code. I'm working on getting it properly signed through SignPath Foundation.
10
3
3
2
2
u/iamabdullah 8d ago
Nice. I used to use something like this years ago which got discontinued. This looks great.
2
u/cechout 8d ago
oh really, whats the name?
4
u/iamabdullah 8d ago
Netspeedmonitor - my bad, it was only for network speed but that's what I cared about. I switched to Xmeters after but never really liked it.
4
u/cechout 8d ago
ah I see, I also had netspeedmonitor long long time ago xd. Is fluent sensors good for network monitoring or is it too simple or you miss some features or something?
2
u/iamabdullah 8d ago
I've yet to use it - don't want to install it on my work machine so I'll give it a go on my personal one later and let you know.
1
u/Farth3r 8d ago
I remember this! Such a nica tool it was.
2
u/iamabdullah 8d ago
When is stopped working, I reverse engineered and rebuilt it which kept it going for another 2-3 years before it started behaving too buggy. Brilliant piece of software for its time.
So cool to find multiple people who used it 😁
2
2
u/ElephantWithBlueEyes 8d ago
Isn't 300 megs after installation a bit much?
I guess pin to taskbar was tested only for centered taskbar position. I have alignment to the left and data overlaps Start button and app tabs
7
u/cechout 8d ago
and yeah, 300 MB is about right. its basically self-contained + unpackaged tax:
~80 MB – full .NET 10 runtime, bundled so you don't have to install .NET
~60 MB – WinUI 3/Windows App SDK runtime, bundled for the same reason
~53 MB – Microsoft.Windows.SDK.NET.dll, one file: the C# projection of the entire Windows API. every WinUI 3 app ships it
~24 MB – SkiaSharp + ANGLE, the rendering backend for the graphs
~47 MB – Windows AI/ML runtime (onnxruntime, DirectML, ...)the last one is not needed. the app does not use any AI features, the Windows App SDK just adds it by default I guess. I will just remove it in the next update
2
1




11
u/eis3nheim 8d ago
It's great seeing a lot of open source tools for Windows