urushitan

joined 2 months ago
[–] urushitan@kakera.kintsugi.moe 24 points 3 days ago (1 children)

Yeah unfortunately this has been around for long time. “Booth babes” was coined in the 80s

https://en.wikipedia.org/wiki/Promotional_model

Pretty much anyone whose username ends in .eth or begins with a dollar sign or has a crypto address in their bio, but the vast majority of those people already pay for that blue checkmark anyway

[–] urushitan@kakera.kintsugi.moe 4 points 1 week ago* (last edited 1 week ago) (1 children)

https://xcancel.com/htxtafrica

At least as far as sharing every article on their site there, yes. Almost 50k tweets

Can’t wait to read about those 720p screens with 350 nits of brightness

Thanks! Though I haven’t experienced that at all. It’s purely icons within gtk apps. Everything plasma or KDE specific works fine

The user is one with the wall now

Yeah the vast majority of AI "offerings" from most of these huge companies and/or websites is just bolting a chatbot to something and then wondering why people don't want it. I tried copilot in excel and it couldn't access the document I was working on, it was an absolute useless mess.

[–] urushitan@kakera.kintsugi.moe 22 points 1 week ago (1 children)

ok that's great and all but

how line go up

[–] urushitan@kakera.kintsugi.moe 15 points 1 week ago* (last edited 1 week ago) (5 children)

Well… the AI did. They didn’t even bother to remove the em dash, so they didn’t write it

Sure but they don’t make the final decisions, visa and Mastercard, the money holders do

[–] urushitan@kakera.kintsugi.moe 65 points 1 week ago (1 children)

The past was alterable. The past never had been altered. Oceania was at war with Eastasia. Oceania had always been at war with Eastasia.

turns out they actually get zuckbux now for looksmaxxing

 

I went through an entire experience trying to fix broken/missing icons in gtk apps. I use kde plasma as my DE with breeze and breeze icons.

Adwaita and hicolor and stuff are installed, but apps like ghostty and trayscale were explicitly looking for icons only adwaita provides.

KDE was reporting "hicolor" as the gtk icon no matter what I tried for awhile. Finally fixed it with a three pronged fix. This issue happens on a fresh nixos install installing plasma and gtk and the related icon sets and booting up any gtk apps that use adwaita specific icons (which I believe is any app that uses libadwaita). So this should be helpful.

EDIT

So that broke after a reboot, turns out there was still a race condition with dconf

I've updated the doc, but here's how we fixed the fix

The override service (Layer 3) was silently failing since deployment. gsettings requires compiled GNOME schemas (gschemas.compiled) which NixOS+KDE does not have anywhere in the system path — only Steam runtimes had them. The service exited with No schemas installed and status 1. Icons appeared to work initially because home-manager's dconf.settings wrote the correct value at activation time, and kde-gtk-config hadn't overwritten it yet. After a reboot/relogin cycle, kde-gtk-config would stomp it back to "breeze" and the broken service couldn't fix it. Fix: Replace gsettings with dconf write — dconf operates directly on the database without needing compiled schemas:

ExecStart = "${pkgs.glib}/bin/gsettings set org.gnome.desktop.interface icon-theme Adwaita";

# After (works everywhere):
ExecStart = "${pkgs.dconf}/bin/dconf write /org/gnome/desktop/interface/icon-theme \"'Adwaita'\"";

Note the nested quoting: dconf expects a GVariant string, so the value must be 'Adwaita' (with single quotes inside the double quotes).

Lesson: On NixOS with KDE (no GNOME), never use gsettings in systemd services or scripts. Always use dconf directly. gsettings is a convenience wrapper that requires schema compilation — a GNOME-ecosystem assumption that doesn't hold on KDE-only NixOS.

view more: next ›