• 11 Posts
  • 482 Comments
Joined 8 months ago
cake
Cake day: January 9th, 2026

help-circle



  • In KDE my favorite is an extension to the window manager, for auto tiling: https://codeberg.org/anametologin/Krohnkite or install it from Settings > Window Management > KWin Scripts, then click “Get New” and search for “Krohnkite” by anametologin. Development is a bit slow at the moment, but it does the job well.

    As you would expect, it does tile the windows automatically. I like that there are different layouts available, meaning different logic how a window should be placed and sized. I can switch between a layout when needed, and add exceptions to specific windows or applications to not tile them. So the usual stuff. It comes with some features not seen in other tiling window managers. In example I can convert any window into a “Dock”. A dock would then make the window be always on the top, bottom, right or left side of the window, similar to the KDE bar. And a window is tiled accordingly, so its always visible. Super cool.












  • This is where the server/client concept comes from. Some server software runs in the background and wait for access from an external client software. Then it works on the server and produces and output for the client. This way the entire server does not need to start run and stop for every single request. I mean you don’t start and close every time you click on a new link on the website, right? So your PC runs all the time. And that’s similar to how MySQL operates. It starts a server in the background and then waits for any application to use it. So this is totally normal.

    Now because lot of people don’t want to start the server process “by hand”, they put it in autostart, so it starts with your system. If you don’t want it to autostart, maybe there is a way of configuring it so you have to start it manually each time you want to use it. But I cannot assist with that help, just wanted to explain why that is on a high level.


  • File indexing allows (faster) searching of files and sometimes even allows finding files by their content not only the file name.

    At least for text files, grep can do that too. Off course it is not as fast as indexed files, but how often do you need that? There is ripgrep, a faster alternative. I personally don’t miss indexed files as I thought I would. With fast drives and CPU and the knowledge how to do a proper search does most of the stuff I need. Just my opinion. The price for an indexer is too high to me (and besides they were responsible for the death of my SSD… I believe).


  • Summary of my reply: Baloo (and mlocate) were stuck on filenames with unusual characters in filenam, which probably caused the death of my system SSD.

    Baloo is known to be borked from time to time, in the many years I used it before. I stopped using Baloo for a different reason. Baloo and the more general mlocate file indexer destroyed my previous system SSD. After replacing the drive, (without knowing what the issue was) I was careful and watched write and reads of the drive. And then I found the issue, Baloo (and later mlocate) did massive Gigabytes of writes and reads in short amount of seconds for long period. After examination I found out baloo (and later mlocate the same) were stuck on specific files. Those filenames had unusual characters, that normally would only be seen in binary file formats.

    I don’t know if we can blame the indexers for this, but as far as I know those are the only applications with the issue. I’m not entirely sure if RetroArch can play those games (these are Rom files for old systems), but at least its file handling worked fine.