Linux installs fast. Then you spend the next hour doing the same boring ritual: browser, codecs, media tools, chat apps, dev tools, fonts, utilities… all via tabs, notes, and half-forgotten package names.

So I built LinuxMate: a free, open-source helper that generates a clean “get me productive” install script from a checklist. Basically Ninite, but for Linux, and without the “sign in to continue existing” vibes.

  • Pick apps/tools
  • Choose your distro / package manager
  • Get a reproducible script
  • Run it and move on with your life

Live demo: https://www.allroundwebsite.com/linuxmate/ Repo: https://github.com/Henkster72/LinuxMate Blog (my reasoning / background): https://www.allroundwebsite.com/blog/bye-windows-hello-linux-and-linuxmate/

If you’ve got strong opinions (the useful kind): distro support, package picks, safer defaults, or edge cases, I’m collecting feedback.

  • bestboyfriendintheworld@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    12 hours ago

    I simply dump the installed packages into a text file and then use that on the next install.

    Pseudo terminal commands:

    packagemanager list installed -nodeps >> myfacorites.txt
    
    packagemanager install `cat myfacorites.txt`