throw123xz a day ago

Very nice.

On a side note, and not wanting to criticize the people that spend their time working on something like this, that UI is the main reason why I still use Windows and macOS. Light grey on a white background, dark grey on a that blue background, a black AMD logo on a dark grey background, the padding around the text inside boxes...

I feel bad saying this when it's a free tool, but it's a shame that open source projects struggle so much with UI stuff.

  • amlib a day ago

    MacOS and specially Windows has their fair share of great and useful software with questionable UI/UX, this is far from a problem affecting only Linux.

    Take a look at modern KDE and specially GNOME software, they are pretty well made regarding UI/UX best practices and GNOME even has a great HIG that they follow strictly on their stuff, you can't even say that regarding Microsoft own software anymore.

    • Gormo 6 hours ago

      > MacOS and specially Windows has their fair share of great and useful software with questionable UI/UX, this is far from a problem affecting only Linux.

      In fact, Linux generally offers many more affordances for adjusting the appearance of the UI, especially in comparison to Windows and Mac. If you don't like way your system looks, you can change your UI theme settings, where corresponding options on the proprietary OSes are much more limited.

      • SirMaster 4 hours ago

        But most people don't want to have to adjust things, they just want it to be good out of the box.

        My friends keep telling me android is better because it offers so much more customization, and I keep telling them I don't want to customize, I just want it to be nice by default, and to me iOS is, so that is a selling point for me.

    • bb88 21 hours ago

      Gnome is not bad, but GTK has been historically a pain point for development.

    • XorNot 20 hours ago

      I just people to do menu bars on desktop again.

      Add the Jetbrains search anywhere function if you really just innovate.

      No more Hamburger menus.

  • badsectoracula 18 hours ago

    The UI is pretty much a copy of CPU-Z's UI. The color scheme comes from the theme and you can use any theme you like, you don't have to use what the author uses.

  • wpm a day ago

    The ncurses CLI version looks great.

  • bdhcuidbebe 11 hours ago

    cpu-x tries their best to look like their windows precursor, cpu-z…

  • hulitu 5 hours ago

    > that UI is the main reason why I still use Windows and macOS. Light grey on a white background, dark grey on a that blue background, a black AMD logo on a dark grey background,

    Welcome to Windows.

kcb a day ago

The tool hardinfo2 works pretty well for system stats. Somewhat similar to hwinfo64 on windows.

aforty 19 hours ago

Nice but does it really have to look like the Windows version? Can’t we imagine and have better things?

  • M95D 11 hours ago

    But this is one of the better things!

DrillShopper a day ago

It would really be nice to not have to require a daemon to make this program useful

  • DeepYogurt a day ago

    Ya. The joy of cpu-z is that its a single small binary.

    • lmz 21 hours ago

      I wouldn't read too deeply into that. I'm pretty sure cpu-z bundles a driver that is unpacked and installed at runtime (search for 'cpuz sys')

  • nateb2022 a day ago

    c.f. https://github.com/TheTumultuousUnicornOfDarkness/CPU-X/wiki...

    the daemon separates userspace from root domain, and ensures that the code running with root privileges is very small and easily auditable

    • __turbobrew__ 20 hours ago

      Maybe I am dumb, but why does it have to be a daemon? Why not have the user process fork off the privileged binary to collect data and return the results through stdout?

      • unaindz 19 hours ago

        Forking a process is not free and starting one every hundred of a millisecond* seems very expensive. *I'm do not know which frequency it updates the data but it's usually 1 sec to 0.1 sec.

  • preisschild a day ago

    At least in the Flatpak, it can be started by just clicking the "Start daemon" button.

  • whalesalad a day ago

    I use it without the daemon. I don't even know what the daemon does.

mmh0000 a day ago

[flagged]

  • petabyt a day ago

    This tool does benchmarks and lists vulkan/opengl capabilities. It's a bit more than a glorified command line frontend.

    • Brian_K_White a day ago

      There are similar commands for those. It is exactly a bit more than a front end.

  • izacus a day ago

    This is absolutely "Who cares about Dropbox, just use rsync!" level of silly and lazy HN answer :D

  • jcelerier a day ago

    When I type all that (if I type them correctly, I do a lot of mistakes so I need simple icons to click sometimes), it really doesn't look like CPU-Z in my terminal, I wonder what I'm doing wrong?

    • Brian_K_White a day ago

      Those commands do provide the information. They never claimed it exactly matches the graphical layout.

      And I don't think they are even claiming that a graphical presentation of the same info is necessarily wrong or pointless, they are simply saying, that's a lot of c++ for merely wrapping the text in some gui widgets.

      It's a fair observation.

      I can imagine generating say an html rendition that looks almost the same in a few k of shell. Maybe there's more to it and it wouldn't be so simple, but that is what it looks like.

      • jcelerier a day ago

        > Those commands do provide the information. They never claimed it exactly matches the graphical layout.

        but that's the thing, the target audience for "CPU-Z for Linux" is not people who want the information (because if you do it's of course trivial to google and find out about /proc/cpuinfo), it's people who want to use a software which is as close as possible to the original CPU-Z (so HTML layout definitely does not cut it either).

        > I can imagine generating say an html rendition that looks almost the same in a few k of shell.

        considering that the source code assumes that dmidecode won't be present (it embeds it) I doubt you'd reimplement the whole dmidecode in only a few k lines of shell. And that's just a small part of what CPU-X does.