I make things: electronics and software and music and stories and all sorts of other things.

  • 0 Posts
  • 17 Comments
Joined 2 years ago
cake
Cake day: June 14th, 2023

help-circle
  • Well, it’s gotta be a tiling system. And a good one. At this point I can’t function in a non-tiling environment. Specifically a manual tiler with an auto-tile a la i3 w/ i3-alternating-layout or a dynamic tiler that still let’s you break stuff (doesn’t really exist).

    It’s just a better way to use a computer, and I can’t go back. It’s so much nicer. I would stop using a computer before I go back to dragging windows around.

    And that rules out most DEs. It rules out Mac OS and Windows, as well, but at least on Windows I can almost get by with Fancy WM. It’s “okay.”

    And speaking of just getting by, that’s Polonium with KDE. KDE is pretty good as an “environment,” but it doesn’t have a tiler that meets my needs, or at least I thought it didn’t until recently. Then I discovered Polonium. It works pretty well. Used it for several months (and still do on one machine). It’s very bare bones tho, and is hard to configure the handful of floating windows I do want like popups. So KDE is just scraping by.

    GNOME on the other hand has the excellent Pop Shell 2. But well, GNOME is GNOME. It’s buggy when you try to use it a different way than intended. God forbid I want Qt, Gtk2, Gtk3, Gtk4, and libadwaita apps to all look nice on my system! It’s clunky, but the tiling is excellent at least.

    Now you mention XFCE. So what about that? You could use i3 as the WM for Xfce. I used i3 for years and years and years as my WM and know how to build a DE around it. Why not use Xfce + i3?

    Well, the thing is X11 is as good as dead, and while XFCE now supports Wayland, you can’t use a tiling system with the Wayland version of XFCE.

    So what does that leave me?

    Nothing. At least for a full on DE, which is what you asked.

    There is not a single (pre-made) Desktop Environment that suits my needs. Not a one. Either it doesn’t support good tiling, is too rigid, or hasn’t switched to Wayland.

    My only options are:

    • Roll my own DE built around Hyprland/Sway, and since I’m on nvidia, those aren’t fantastic options (albeit Hyprland works a lot better on Nvidia these days), and that’s what I’m using.
    • Deal with the slight annoyance of the under-implemented Polonium in KDE

    Right now I’m on Hyprland. May go back to KDE bc multi monitor is being weird on Hyprland rn.

    My one hope is that COSMIC polishes itself up and gets to its first real release.








  • Yes. The only way to send patches without something like Github is over email. I don’t mind all the other stuff, but there’s no other way to do PRs than over email, and I hate email. I didn’t see that he gave alternatives. His preferred solution was an email

    The formal PR button in a forge is a way to do that with one click, but a short email with all the same information is just as good.

    Like, dawg, no it aint







  • GLFW is a C library, not a C++ one, and an old one at that, and so the reason is that a long time ago, there was no bool in C. Every library would make their own true and false bc it’s handy to have.

    Nowadays, the type _Bool has been added to C, and C++ has built-in bool, but you can still see the legacy of no boolean in C as to use the type name “bool” as well as the key words “true” and “false” for 1 and 0, you have to include “stdbool.h,” as well as in custom types in these old GL-adjacent libraries.