[-] neoney@lemmy.world 1 points 8 months ago* (last edited 8 months ago)

You are most definitely running Discord in XWayland. You need to add chromium flags to make it run in native Wayland. You also need to have an xdg desktop portal to support screen sharing.

If you want screenshare to work on an app that can't run in wayland, use XWaylandVideoBridge

[-] neoney@lemmy.world 5 points 8 months ago
[-] neoney@lemmy.world 2 points 1 year ago

can’t wait for a Catppuccin theme, maybe I should make one🧐

0

I have an Oracle Always Free VPS. 4 ARM Ampere A1 vCPUs, 24GB RAM, 200GB storage. Will this be a good fit as a server for a Lemmy instance? Are there any issues with hosting Lemmy on aarch64?

[-] neoney@lemmy.world 1 points 1 year ago

Not much. I have a searxng instance, used to have nextcloud… I should start hosting more stuff really soon

1
submitted 1 year ago* (last edited 1 year ago) by neoney@lemmy.world to c/technology@beehaw.org

Hi, I want to share with you the way I figured out to easily archive reddit content with ArchiveTeam Warrior on NixOS. You can set it up fully in nix config!

Okay, first of all, you'll need to enable docker or podman. I chose podman here:

virtualisation.podman = {
  enable = true;
  dockerCompat = true;

  defaultNetwork.settings.dns_enabled = true;
};

After that, all you have to do is run the docker image! Here's how I do it with podman:

virtualisation.oci-containers.backend = "podman";
virtualisation.oci-containers.containers = {
  archive-team-warrior = {
    image = "atdr.meo.ws/archiveteam/reddit-grab";
    autoStart = true;
    cmd = ["YOUR_USERNAME_HERE_FOR_LEADERBOARD"];
    extraOptions = ["--network=host"];
  };
};

This doesn't start the full ArchiveTeam Warrior, but only the reddit grabber. That means you get no website to manage it at port 8001, and it just runs in the background, not disturbing you. I think it's worth it to add these 14 LOC to your system configuration, to help archive reddit.

neoney

joined 1 year ago