• 5 Posts
  • 186 Comments
Joined 2 years ago
cake
Cake day: March 14th, 2024

help-circle

  • Thank you for telling me about Podlet. I’ve been using podman-compose for all my containers but I’ve thought about converting them to systemd units. The only thing I’m unsure about is whether it’ll still be easy to access the container files. Currently I have a containers folder with a folder for each service inside it. Inside that, there’s the compose.yml and the folders with the container data. I map all container folders, with data that needs to be kept, to a folder that sits right next to the compose file. If it’s just temporary data (like caches), I oftentimes map it to a volume because it doesn’t matter if I lose it. Do you know if I can still do it like this (or in a similar way) if I use systemd units?



  • Those distros are fine, I haven’t heard anything bad about them. The only distros I wouldn’t recommend are Ububtu and Manjaro (I can explain why if you want).

    About Excel, it doesn’t work on Linux unfortunately. But you have some options. You can try LibreOffice and OnlyOffice (you can install them on Windows to try them out before switching) and see if they’re enough for your needs. There’s also a web version of Excel which you can use in your browser but it doesn’t have all the features. If you really need Excel, you can also try using a virtual machine with Windows and run it inside of that but dual booting might be easier for you at that point.


  • I use podman too and I set up hardware acceleration for Jellyfin. I’ll update this with how I did it once I’m home.

    Edit: Here’s my compose.yml (I use podman-compose):

    services:
      jellyfin:
        image: lscr.io/linuxserver/jellyfin:latest
        container_name: jellyfin
        dns:
          - 9.9.9.9
        environment:
          - PUID=1000
          - PGID=1000
          - TZ=Europe/Berlin
        volumes:
          - ./config:/config:Z
          - ~/drive/media:/media:z
        devices:
          - /dev/dri:/dev/dri
        ports:
          - 8096:8096
          - 7359:7359/udp
          - 1900:1900/udp
        restart: unless-stopped
    








  • I recently upgraded to a 4k monitor with HDR and shortly after that GNOME 48 came out with HDR and VRR support, so KDE Plasma and GNOME are the two desktops I know of that support HDR. I use GNOME and it works really well even though I do need to use gamescope if I want to play a Windows game with HDR and Firefox doesn’t (yet?) support it on Linux. It definitely looks really cool but it’s not a huge loss if you stick with Mint and just use SDR. It seems like you wanna get the monitor either way, so I’m pretty sure you can just use a live USB of something like Fedora to try HDR out without having to actually install anything. I’m just not sure what software you could try it out in because (at least to my knowledge) no browser supports HDR on Linux yet and you can’t just install a whole game on a USB stick.





  • I just don’t think it looks very good. I know that everyone has different tastes of what looks good but I personally love modern design when it comes to UI and IMO Android was the best looking OS UI and right after that GNOME. But part of why I think both of them look so good and why I think they even look better than Apples design, is that they don’t use blur. I don’t think it really fits into the Material 3 design language.



  • Fisch@discuss.tchncs.detolinuxmemes@lemmy.worldSnap bad
    link
    fedilink
    English
    arrow-up
    1
    ·
    5 months ago

    I’ve used Linux for years and I also have a ~/Applications folder where I put AppImages, applications cloned with git and stuff like that in. E.g. I have the last Yuzu AppImage in there, since it got taken down, but I also made a .desktop file for it, so I can launch it through the application menu. Btw, you should be able to just double click AppImages in your file explorer to open them.