We just added Alexandrite to the server, it’s an alternative desktop UI for Lemmy created by Sheodox who worked tirelessly to make the necessary changes to we could host it ourselves here. So go to https://a.lemmy.world and have a look!

He continues to update it constantly, you can follow the development on his github page or in his community. If you like what you see and want to support him, why not buy him a coffee? :)

For those who don’t have Lemmy World as their home instance and want to use Alexandrite, either ask your instance admins to add it or go to https://alexandrite.app!

Edit: I should probably have mentioned that Alexandrite is meant for desktop!

  • Antik 👾@lemmy.worldOP
    link
    fedilink
    arrow-up
    2
    ·
    1 year ago

    We use docker compose in scripts and crontabs

    /scripts/update-alexandrite.sh:

    cd /opt/alexandrite
    docker-compose pull
    docker-compose down
    docker-compose up -d
    

    Then use crontab -e and add this line:

    00 05,00 * * * bash /scripts/update-alexandrite.sh

    • Nix@merv.news
      link
      fedilink
      arrow-up
      0
      arrow-down
      1
      ·
      1 year ago

      Sweet thanks, do you have this and scripts to keep the other front ends updated on GitHub somewhere?