Skip to main content



Software Spotlight: WebReady


cross-posted from: sh.itjust.works/post/25183123

WebReady is a simple tool for converting videos to animated webp images and thus allowing users to use them as animated wallpapers for KDE. The tool is primarily designed for steam deck, but works perfectly on any KDE powered desktop.
in reply to RmDebArc_5

Hah nice, I'd never heard of this one but there's been plenty of times I've wanted to make a quick loop and didn't want to fuss with it in ffmpeg directly. Will definitely check it out!
This entry was edited (4 months ago)


Software Spotlight: WebReady


cross-posted from: sh.itjust.works/post/25183123

WebReady is a simple tool for converting videos to animated webp images and thus allowing users to use them as animated wallpapers for KDE. The tool is primarily designed for steam deck, but works perfectly on any KDE powered desktop.

Unknown parent

lemmy - Link to source
Possibly linux
How so? There are lots of valid complains about gnome but stability is not one of them. They are very careful about the stuff they ship by default.
Unknown parent

lemmy - Link to source
TheGrandNagus

Gnome like to get things perfect before they make it default. It's what makes Gnome pretty stable, even if it does mean power users have to type in a command to expose the setting in the meantime.

The wait can be frustrating though.

This entry was edited (4 months ago)



Not trying to clickbait but is this the end for kernel-level anti-cheat?


From the article

Microsoft has officially announced its intent to move security measures out of the kernel, following the Crowdstrike disaster a few short months ago. The removal of kernel access for security solutions would likely revolutionise running Windows games on the Steam Deck and other Linux systems.
This entry was edited (4 months ago)
in reply to xavier666

There was news that battlefield one would stop working because they were implementing fairfight(?) but it's still working and someone in game chat told me it wasn't kernel level in battlefield one version of the anti cheat. Any facts to this?
This entry was edited (4 months ago)
in reply to blindbunny

I think FairFight is the old anti-cheat, which at least used to be server side only.
in reply to ffhein

So the best kind of anti cheat? (Does it prevent hackers good?)
in reply to ReakDuck

It did alright, don't think I saw that many obvious cheaters in BF1. BF5 would occasionally have obvious cheaters, but I would hope they get banned eventually just because it's over the top (shooting people through walls, infinite ammo, perfect aim). Difficult to say with more subtle cheats, but I suppose if they're indistinguishable from players who are just good at the game then I think most people won't ever notice.

On the flip side I got permabanned from multiplayer in BF5 after EA falsely accused me of cheating, though I suppose that could've happened with any kind of anti-cheat, and could've been fixed by having half-competent support.

in reply to ffhein

The problem with EA is that they never bothered to moderate their games. In the end you get spinbotters and shit whilst legit players have to deal with rootkits because they're too stingy to pay for someone to review reports and develop moderation tools.

the Overwatch system in Counterstrike (and a bunch of other tools and policies in tandem with VAC) have been way more effective; I was always more certain that a blatant or suspected cheated would be dealt with in CS than in battlefield.

in reply to xavier666

Am I misremembering to think Genshin Impact was a cause of one of these major security disasters?

It wasn’t even people who installed Genshin that were victims - it was like, Microsoft signed a driver made by Mihoyo to scan for cheat apps. But mihoyo, being a game company with a rapid release cycle and imperfect security, had a vulnerability in the driver. So, malware authors could include that driver in their packages to elevate access on Windows installs even when no one had any idea what a Genshin is.

Not quite the same thing as Crowdstrike I guess though.



QEMU: How to increase VRAM allocation?


I'm having trouble allocating more VRAM to my QEMU virtual machine. Currently, I'm using the following command to launch my VM:

qemu-system-x86_64 -enable-kvm -boot menu=on -drive file=QEMU -m 2G -cpu host -vga virtio

Can anyone help me figure out how to increase the VRAM allocation in QEMU?

Solution by lnxtx@feddit.nl qemu-system-x86_64 [...] -vga qxl -global qxl-vga.vram_size_mb=128 -global qxl-vga.ram_size_mb=128

This entry was edited (4 months ago)
in reply to proxy

Not sure, but maybe the QXL driver will help:
qemu-system-x86_64 [...] -vga qxl -global qxl-vga.vram_size_mb=128 -global qxl-vga.ram_size_mb=128
in reply to proxy

Replace the value 128 to 512. And try again :)
This entry was edited (4 months ago)
in reply to lnxtx (xe/xem/xyr)

I was under the impression that QXL driver were capped at 256MB too, thanks.
in reply to proxy

Vga is fixed iirc, the original frame buffer was tiny, the emulated one gives you 16mv

Cirrus logic gives you 16mb too iirc, then you can use other drivers that give you more,

kraxel.org/blog/2019/09/displa…

in reply to InverseParallax

Thanks the list is very useful.
This entry was edited (4 months ago)
in reply to InverseParallax

If I'm reading correctly, there isn't a modern GPU driver for QEMU that supports customizing VRAM?
This entry was edited (4 months ago)
in reply to proxy

Qxl does, it's fairly modern.

Otherwise you have virtio and virglrenderer, which are as modern as it gets this side of pcie pass through or intel's sriov.

This entry was edited (4 months ago)


I got SWAT'ed and handcuffed live while Linux development streaming!


Unknown parent

lemmy - Link to source
TheGrandNagus

The first thing is what they did. They knocked on the door, they spoke. At one point he was detained when they had a look about and then they apologised and left.

There was no SWAT (this is Germany so technically it would be a SEK team I guess), there was no flashbangs (why would police even have those?), there were no rifles in faces.

in reply to Brickhead92

The only indentation method that the viewer has control on how big they want it.


I let my younger sis modify my kde desktop.


Hour after I come to this, I'm loving it. She modified it so it retains original kde look but has enough tiny details to keep it interesting. She says she'll resume the work tomorrow 🫡
in reply to SaveMotherEarthEDF

Hours later she was still at it, hairs scattered, baffled looking... saying how could someone live with so many choices lol.


Oh man I relate to this so hard hahaha...

Do everything you can to try to preserve those settings, because you will need to do a clean install at some point (well maybe not, I'm sure it depends on your distro), and you're gonna lose all of it.

This entry was edited (4 months ago)


What was your last RTFM adventure?


This entry was edited (4 months ago)
in reply to fool

For me, it was getting a handle on rsync for a better method of updating backup drives. I was tired of pushing incremental changes manually, but I decided to do a bit of extra reading before making the leap. Learning about the -n option for testing prior to a sync has saved me more headaches than I'd care to enumerate. There's a big difference between changing a handful of files and copying several TB of files into the wrong subfolder!
in reply to Bob Smith

Oh I love the "walk me through what I'm about to do" concept. Dry runs should be more common -- especially in shell scripts...

The world would be a better place if every install.sh had a --help, some nice printf's saying "Moving this here" / "Overwrite? [Y/N]", and perhaps even a shoehorned-in set -x.

Hope your r/w wasn't eaten up by the subfolder incident (that I presume happened) :P

in reply to fool

I'm lucky I manually ran a few jobs before I started using rsync in scripts. When I didn't think things through, I saw the output in real-time. After that, I got very careful about testing any scripts and accounting for minor changes in setup.
in reply to fool

Couldn't get the geolocation work for weeks in openSUSE. I, supposedly, read the manual and checked everywhere and even asked in the opensuse forum, since the timing was perfect with Mozilla shutting down MLS, and it probably was a reason, but also any other alternative didn't work. Some days ago I decided to RTFM of geoclue again, only to find out that I could just "hardcode" my location in an /etc/geolocation file >:(


Stängningen av Pusher Street. Köpenhamn hade länge sen slags semilegal narkotikamarknad i form av Pusher Street i fristaden Christiania. Med tiden kom kontrollen över försäljningen på Pusher Street att hamna i händerna på Hells Angels MC även om inte alla försäljare tillhörde organisationen. Med tiden ledde det också till våld och gängkonflikter i Christiania mellan olika kriminella gäng.

blog.zaramis.se/2024/09/14/sta…



This week in Plasma: 6.2 beta release!






Which distro?


cross-posted from: lemmy.world/post/19744473

I'm going to be building a new computer soon for myself. (Going AMD for the first time, since intel microcode issue.)

I would say I'm an expert or advanced user, as been using pcs for 25 years and set up arch and slackware in the past. I have tried many distros and would like some feedback.

I mainly use my pc for gaming. I want something customizable, KDE ish, and without bloatware. A good wiki is a plus.

I think that i may end up with arch... is it better for gaming since it's bleeding edge and isn't steamos built off it?

Side question is distro chooser accurate?

in reply to Crazyslinkz

EndeavourOS has been my daily driver for over a year now has been mostly completely smooth. I went from Windows to Linux with no Linux knowledge beforehand.

I've had some issues pop up, but thanks to Arch's very detailed documentation, I've been able to fix them myself or find answers online. Most recently and update yesterday broke yay (AUR package manger) for me, so I searched the error code that popped up in the terminal and found a discussion at the EndeavourOS forum (great resource) where a fix/workaround was posted. A couple of terminal commands later and yay was reinstalled and working again.

That's been my experience with any problems that have come up. Very manageable.


in reply to therealtor

For a second I thought we were in !aneurysmposting@sopuli.xyz
in reply to Hnery

I had to read the title a few times myself, it's long and most of it could go into the body
This entry was edited (4 months ago)
in reply to therealtor

tails is a great tool for privacy I always found it more clunky to use sadly, but it's use case as a no log no track style is is amazing. Just don't try to use it with anything that uses external storage, it has a cow.
This entry was edited (4 months ago)

in reply to Leaflet

Idk why this submission is being downvoted, this is some nice work.
in reply to TheGrandNagus

I asked about the same in the past. There's a lot of hate from people who dislike the DE or the attitude of some core contributors.


SerNet secures funding for Samba project from Sovereign Tech Fund


reshared this



Bandwagon is Emissary’s Bandcamp Alternative


For Fediverse musicians looking for a new Bandcamp alternative, Bandwagon feels extremely promising. It's built on top of the Emissary platform, and offers a robust amount of features for playing, promoting, and discovering music.
in reply to Sean Tilley

As someone who spends more money than I should on music from Bandcamp, I'm interested to see if they ever get payments working. I remember people talking about a federated BC alternative, where the 10% platform fee goes to the instance you're on, when they got bought by that music licensing company.

Also, first paragraph under "Integrating with the Fediverse", you put Bandcamp when I think you meant Bandwagon.

This entry was edited (4 months ago)
in reply to Sean Tilley

Mirlo.space is working on federation too. I think they're not as far along in that regard, but further along in terms of being a bandcamp replacement? Last I heard, anyway. I buy stuff from there, payment works.
This entry was edited (4 months ago)


Bandwagon is Emissary’s Bandcamp Alternative


For Fediverse musicians looking for a new Bandcamp alternative, Bandwagon feels extremely promising. It's built on top of the Emissary platform, and offers a robust amount of features for playing, promoting, and discovering music.


sub.club Emerges to Offer Paid Fediverse Subscriptions


sub.club is an emergent new platform for paid subscriptions in the #Fediverse. It's simple, smooth, and easy to use.
in reply to silverpill

Probably because, to my knowledge:

  1. I didn't know that Mitra did that.
  2. Even though it does have that functionality, I have no idea whether it would work with the rest of the network.
  3. This article was about sub.club

I'm not trying to slight Mitra in any way, shape, or form, but my focus for this article was scoped to one thing in particular.

in reply to Sean Tilley

@fediverse You cite an abandoned project and withdrawn WebMonetization FEP and then say "most efforts have not advanced beyond the planning stages". This statement is misleading because those planning stages are far behind us. Mitra had subscriptions since 2022 and there are other projects that provide monetization options, like PeerTube Lightning plugin and PeerTube Premium Users plugin. FEP-0ea0 and FEP-0837 were published and implemented. Your co-author @quillmatiq should be well aware of these developments because we talked about it
in reply to silverpill

I'm not a co-author of this article. I contribute to WD but did not contribute to this article as it would be a conflict of interest irt my relationship with the project.

Share your info with kindness instead of anger. We're all trying to educate and build together, and good-faith conversations go a lot further than assuming the worst of everyone.

Sean has never written a piece with the intent to erase history, and he works incredibly hard to keep things accurate.

This entry was edited (4 months ago)
in reply to Anuj Ahooja

wedistribute.org/2024/03/activ…

In another article @deadsuperhero talked about nomadic identity and Mike Macgirvin's efforts to implement it in ActivityPub, but similarly failed to mention another project that implements it (Mitra) and the person who wrote the spec (me).

At least my work was mentioned in a footnote. In the current article it is completely ignored.

@deadsuperhero @fediverse

This entry was edited (4 months ago)
in reply to silverpill

Dude, listen. I am one person running a volunteer news project for free. I try my best to stay on top of researching the space, but there's no reasonable way for me to catch everything. I've written 200+ articles at this point, but due to a combination of factors, I struggle to get more than one article out per week at times. I regularly juggle a backlog of 40+ drafts at any given moment. Add a dash of burnout and fatigue, and you'll start to get a clearer picture: it's hard to keep up, and only getting harder.

There's no way for me to reasonably catch everything. Mitra's a cool project and all, but it's tiny enough that I've heard relatively little about it. There are dozens of projects out there at this point, and new ones everyday. If you're not advertising the thing you're building and what it does, there's a high chance I might miss it.

I keep an eye on the FEP developments from time to time, and I applaud all you've accomplished with that. However, the existence of a spec does not necessarily mean that platforms out there are necessarily implementing each and every one of them.

in reply to Sean Tilley

@fediverse FEP-ef61 is what Mike was implementing and rolled out in production this summer. It's not like we didn't advertise that. All work on this FEP (and ones that precede it) was done in public channels, it's really hard to miss if you're interested in nomadic identity.

Give @weekinfediverse a follow. It provides a concise summary of what is happening in Fediverse

in reply to silverpill

Most efforts haven't moved beyond the planning stages. Just because you can point to a plugin or a FEP spec doesn't mean that it's an ongoing active effort for bring a payment layer to the Fediverse, with a consumer-facing tool or platform. I'm sorry if I didn't catch that Mitra had some of that functionality, but I would also push back and say that the average person is not going to use Monero for payments on the Web anytime soon.

Those PeerTube plugins are nice, and the Premium Users one was actually something I pointed @quillmatiq@mastodon.social to for sub.club, as an example of prior art. They're interesting experiments, possibly useful integrations, but not in and of themselves actual platforms to build infrastructure and solutions on.

in reply to Sean Tilley

@fediverse Protocols described in these FEPs are currency-agnostic and developers can build actual platforms and solutions on them (as I did). This is the only ongoing effort to bring a payment layer to the Fediverse - there are no alternative proposals. FEP-8c3f was withdrawn in favor of FEP-0ea0.

Okay, you didn't know about it. But now you do and it would be nice to include at least some of that information in the article.



sub.club Emerges to Offer Paid Fediverse Subscriptions


sub.club is an emergent new platform for paid subscriptions in the #Fediverse. It's simple, smooth, and easy to use.
Unknown parent

mbin - Link to source
aasatru

A lot of people use Mastodon as an RSS feed where they can leave comments. This would basically allow you to subscribe to the content of a writer, and get it full-form straight in your feed.

I could also imagine following artists on Pixelfed, throwing money in their tip jar to keep posted on their newest creations.

I think there's a lot of potential here. But monetisation is always tricky on the internet, of course.