this post was submitted on 30 Dec 2024
183 points (94.2% liked)

Linux

48867 readers
1090 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

After I install Linux Mint (which is the distro I have settled on), I replace:

  1. Thunderbird with Betterbird
  2. Firefox with Librewolf (I also install Brave for web services that need a chromium browser).
  3. Celluloid / Rythmbox with VLC player
  4. Default Libreoffice with latest Libreoffice from source.
  5. ClipIt/Parcellite with xfce4-clipman

I find this to be my optimal setup and these software give me the extra quality of life that make my workflows easier.

What software do you replace and install on your distro of choice?

Edit: I forgot to say I replace sudo with doas. That's something my friend told me to do although I personally don't find any immediate working advantage with it.

you are viewing a single comment's thread
view the rest of the comments
[–] Libb@jlai.lu 18 points 1 week ago (3 children)

Apps I replace with newer versions (on Mint too):

  1. LibreOffice, with the latest .deb from their website
  2. Celluloid, with mpv. I cannot tell how much I appreciate mpv even though it sucks with DVD, for which I use VLC ;)
  3. yt-dlp, with the latest version available from git
  4. Screenshot, with Ksnip.
  5. Whatever the default image viewer is, with Pix.
[–] lord_ryvan@ttrpg.network 2 points 6 days ago (1 children)

Celluloid, with mpv

Hard agree, also SM Player for the FE

Whatever the default image viewer is

xviewer, it's built on top of eog

with Pix

Is that no longer pre-installed, at least for camera imports?
It was on 17-20.3 but I don't think I've done a clean (re)install since.

[–] Libb@jlai.lu 2 points 5 days ago

s that no longer pre-installed, at least for camera imports? It was on 17-20.3 but I don’t think I’ve done a clean (re)install since.

I could not swear, one or the other. Let's just say I make it my default viewer instead ;)

[–] maxprime@lemmy.ml 13 points 1 week ago
[–] princessnorah@lemmy.blahaj.zone 5 points 1 week ago (1 children)

how do you personally install yt-dlp? I just use pip(x).

[–] Libb@jlai.lu 8 points 1 week ago (2 children)
  1. I remove the preinstalled version (sudo apt remove yt-dlp)
  2. In my ~/.local, I have a 'bin' folder in which to put any manually added app, and in my .bashrc I added that folder to the path. So everything in it is usable.
  3. I download the latest binary from https://github.com/yt-dlp/yt-dlp#release-files and moved it to that bin folder.
  4. Done. I can use it like if it was the pre-installed app ;)

Ah cool, that's exactly where pipx installs to as well :3

[–] jagged_circle@feddit.nl -3 points 1 week ago (1 children)

Jesus that explains why I've never used this. Pip is a security issue.

[–] Libb@jlai.lu 4 points 1 week ago

Jesus that explains why I’ve never used this. Pip is a security issue.

Not sure to understand your remark: I don't use pip and have no idea what risks it could represent or not.