this post was submitted on 22 May 2025
103 points (94.0% liked)

Open Source

37068 readers
281 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 5 years ago
MODERATORS
 

I created a script that always installs apps from their official source

https://github.com/Tsu-gu/appfetch/

It's a proof of concept of an idea I had a while ago. I dislike having to hunt down apps for my Linux machine when I want them from an official source. Some apps are packages as tarballs, some as .debs, some as install scripts that download a binary, some are flatpaks and snaps.

I created a yaml file with only verified apps from flathub and snapcraft, and added a few apps outside of them that I could think of.

The ultimate goal is the user just typing the names of what they want, and the script will just get it. They shouldn't waste time with picking the right source.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 1 points 4 days ago* (last edited 4 days ago) (1 children)

Some apps are packages as tarballs, some as .debs, some as install scripts that download a binary, some are flatpaks and snaps.

  1. tarballs - heckle the devs to make a proper package
  2. debs - this is a package, but its format makes it weak
  3. flatpaks - discard this unvalidatable crap
  4. snaps - discard this unvalidatable crap

just

sus.

typing the names of what they want, and the script will just get it.

apt-get install <some app> (thank you, Conectiva)

This is how it should be. This is how it was. The sooner we leave this swamp of quicksand packaging, the better.

[โ€“] [email protected] 3 points 4 days ago

I like the separation between system packages and apps. A random system library being out of date doesn't matter to me as long as it receives security patches. But I will not use out of date GUI apps when I don't have to.