New profile: /u/biscuits@feddit.de

  • 1 Post
  • 30 Comments
Joined 1 year ago
cake
Cake day: July 25th, 2023

help-circle


  • Well, not really. KeePassXC works properly apart from the Auto-Type feature, which is not that big of a problem because you can use browser integration or just copy and paste it. As for the screen sharing thing - it works, i’ve had problem with capturing sound with it but apparently it is just Discord for Linux thing and not really Wayland. I never had any issue with DPI, neither on Gnome or KDE. I don’t remember what is was on Gnome, but UI scalling on KDE works fine.




  • Yeah, I guess it may be risky to remove drives from pool, so maybe it would be better to build to just move the whole secondary pool as the other commenter pointed out (at least for the first time, smaller increments should be easier to handle). But do you think my strategy with snapshots as backup is good overall or should I use something else?







  • biscuits@lemmy.sdfeu.orgtoLinux@lemmy.mlShould I switch to Wayland?
    link
    fedilink
    arrow-up
    26
    arrow-down
    1
    ·
    edit-2
    10 months ago

    I’ve fully switched to Wayland some time ago (it could be already a year) after I learned about how insecure X really is and I honestly do not experience any issues that I sometimes see on the internet. I’ve been using Gnome for few months, but now I switched to KDE. I think a lot of apps are working natively on Wayland, but for other cases you have XWayland that also works flawlessy in my opinion.

    One of things that was issue for me was that I couldn’t use Auto-Type feature in KeePassXC, because Wayland doesn’t let apps pretend to be a keyboard or capture windows as easily as X does. Funnily enough, I’ve managed to get it working by running keepassxc --platform xcb, but it stopped working some time ago and I’m not entirely sure why. Other thing that is a problem for me is screen sharing. Wayland doesn’t allow apps to capture screen as I mentioned earlier so it heavily relies on PipeWire for this and PipeWire has its own sets of problems. It seems working correctly for the most part, but I couldn’t really figure out how to share screen with sound. Not a dealbreaker for me, and a workaround would be to route audio as a microphone input for example, but it is an issue nonetheless. This is only a problem on Discord, in OBS you can easily select video and audio sources.

    If you’re using KDE already, you could just select Plasma (Wayland) in your display manager and play with it a bit to see if you like it and experience any issues.








  • I use Grist for this purpose. Check out this template, this may be just what you want and using widgets it is quite easy to create a form to append to the expenses database (just like here). Grist works really nice on mobile too and is also pretty easy to self-host if you need an extra degree of privacy, but you can use the official instance as well.

    If you want I can send you my Grist template that does pretty much all things you want.


  • You need parser for that, so a piece of software that takes a text file in given format and transforms it into data structure that some program expects. Some parsers can be pretty complicated as formats like JSON or YAML are complicated themselves (because of objects, arrays, etc.), but other can be pretty straightforward.

    If we assume file format like INI that is structured like “keyA = valueA” with every pair of key and value in a new line, then the parser could go over every line and just split it in half. Then you have the first part containing name of some option and then the second part with value for that option.

    It would be also great idea to sanitize inputs in case there are any special characters in either key or value. Also, if you take a look at the INI file Wiki page, you’ll see that the INI format is a little more complicated itself, so a good parser would need to account for that as well, but the basic functioning is just like above.