this post was submitted on 22 Dec 2024
39 points (89.8% liked)

Linux

48889 readers
1783 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
 

I want code to right click context menu on a file and if it is a .mp4, then convert that to a .mp3 of the same name

also include an option to play faster by +25 +33 +50 or slower by -25 -33 -50 (in a sub menu)

I understand this is different depending on your system, so answer how to do it for the people who use the same system as you

you are viewing a single comment's thread
view the rest of the comments
[–] verdigris@lemmy.ml 1 points 2 weeks ago* (last edited 2 weeks ago)

In FOSS, community & volunteer made software, yes, there is onus on you as the user to do a bare minimum of effort. You have to meet the developers and the software where it is.

I very literally said "GUIs are better but harder to implement." The second half of that sentence is not trivial.

If you want to customize and tweak things in the guts of a program (like OP does for this discussion), you can actually do it with FOSS applications. But expecting developers to expose every configurable option with a GUI would massively slow down the pace of development. Making them available in config files is a nice compromise between doing all that work and not exposing the option at all, in which case you'd need to actually patch the executable or otherwise modify the source code.

I'm not discouraging people from working on GUIs. I'm just pointing out the fact that if an app doesn't expose a setting you want to change, your options are a) complain that the dev hasn't implemented that, b) change it yourself which would be hugely easier if you looked the documentation, or c) find another app. Saying "the onus isn't on me" doesn't work when you don't pay for the software and the person who wrote it is a volunteer, it just makes you an entitled asshole.