So I’m looking at trying am Immutable Linux Desktop (uBlue Aurora probably). One thing I’m not clear on is how to run GUI apps during development. From what I understand I should create a container with distrobox, install my toolchains in it and start developing. I’m used to containers for CLI and server work, but I’m not sure how it applies to the GUI (Wayland / KDE).

If I do a cargo run inside distrobox for a Rust GUI project will it just work? I saw that I can ‘export’ apps, but that is for already built executables whereas I will be building and rebuilding them.

  • governorkeagan@lemdro.id
    link
    fedilink
    English
    arrow-up
    4
    ·
    8 months ago

    I’ve used Bluefin and Aurora for some light web development. I created a container with toolbox (I assume things would be similar with distrobox) and did what I needed. When I needed, I could run npm start and it was as if I had developed locally.

    • ByteBovine@lemmy.mlOP
      link
      fedilink
      arrow-up
      1
      ·
      8 months ago

      Are you accessing that through the browser? It might just be bridging the networking in that case.

  • Björn Tantau@swg-empire.de
    link
    fedilink
    arrow-up
    2
    ·
    8 months ago

    You should be able to run any executable you like in your home directory. No need for any containers. Try it out with a Hello World app.

    • ByteBovine@lemmy.mlOP
      link
      fedilink
      arrow-up
      4
      ·
      8 months ago

      The executable that I would be running is cargo (the rust build tool) but I want that inside of a container. I could cargo build inside the container and then execute the output binary on the host but then I lose things like hot-reload.

  • ByteBovine@lemmy.mlOP
    link
    fedilink
    arrow-up
    1
    ·
    8 months ago

    Dioxus desktop and fullstack worked out of the box. Bevy isn’t working because some Nvidia libraries aren’t in the container. I might need to switch to a different ‘GPU enabled’ image.