lckdscl [they/them]

I self-identify as an nblob, a non-binary little object.

  • 1 Post
  • 39 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle








  • On my personal computer, zoxide, fzf, fzf tab completion allow me to jump around anywhere quite easily, I still use exa/cd for the most part. Look into this if you need more visualization. I still use a GUI file browser from time to time.

    Oh my server though, I still use the default shell, so yes I just memorize where things are. But a trick is to allow for a large history file, and I use the command history search (Ctrl-R) because I tend to run the same things constantly. My setup helps too, I run things in docker, and have a data and a config directory, things go into each accordingly, and I bind mount those directories instead of using volumes.

    If you edit config files a lot, in vim or nvim, :bro old will give you a list of files you recently edited and you can jump to them by inputting a number.



  • I’ve been waiting on this issue the day it was posted… It doesn’t bother me as much as I have a second vertical monitor so the flashing is at the edge of the vertical one, and it’s definitely reduced but not gone away. Coupled with these recent driver updates, my X server just gets slower over time (not in game, thankfully).

    Nvidia doesn’t even have to go FOSS, they can just go OS, and this issue could probably be resolved by now due to increased transparency of what the f is going on with the drivers, as well as better collaboration between kernel developers and driver developers. Who knows what they’re attempting behind the curtains, 3+ releases since this bug was filed and still not fixed.

    A genuine fuck you, Nvidia.




  • Because of better accessibility. How so?

    Because not everyone has the money to afford these new and expensive laptops designed for a niche market. They are still enthusiast-grade products, the prices speak for themselves.

    Because not everyone comes from Europe / the US, so it’s not easy to find these with affordable shipping.

    Because these laptops are only normally offered new, which, for responsible and personal ownership, is excessive. There are thousands of used hardware lying around, why not put some life back into them instead?

    It comes down to price, availability and ethical concerns. Unless money doesn’t mean anything to you, why do you need a $1000 laptop when someone wants a device for higher education or personal casual use? The world doesn’t need more rampant marketing of niche, hyped-up tech. While a fully-FOSS system may be the ideal machine for every Linux enthusiast, we live in a material world with finite resources and chasing after some unicorn laptop is unsustainable.




  • “Be the change you want to see in the world.”

    But anything that requires configuration…should have a fully functional GUI.

    Does this apply to ones with only 4 or 5 options to configure, where’s the cutoff? Configuration files set the default flags and arguments, and a lot of command line tools that are configurable are small and simple enough that making a GUI just to configure it is not worth the hassle, the increased complexity and codebase size. The idea is that if the software is one or a few executable binar(ies) with enough flexibility, then contributors who’s proficient with GUI toolkits can write the GUI wrapper (as a separate package), otherwise it’s actually just a waste of time for the main dev(s). If that sounds reasonable, then you could write it yourself, pay someone to do it, or wait for someone to volunteer their time.

    To address the problem itself. Maybe you should explain what problems you have with editing the configuration files yourself? I know the cons are: (1) having to know or be able to read toml, yaml, json, ini, or some kind of config syntax (but I think they are designed to be generally quite easy to understand), (2) it takes a bit longer to find and open if you’re not used to it, (3) everything is a file so it’s linear, making it harder to see where things are, so longer configs are a PITA. Good tools I think benefit from a GUI or TUI is TLP, archive managers, calculators, volume controllers, font manager or viewer (kinda obvious), why would you want a GUI to configure, e.g., bat, pacman, i3, dunst, all the xorg stuff like xresources, xmodmap??

    In return, the pros are: (1) if there are no external docs, the docs can stay inside the default or sample configuration in the form of comments, whereas for GUI you can’t possible include this information for every single toggle, (2) it’s harder to version control because of increased abstraction, (3) it’s not possible to translate every configuration field to a GUI if it’s beyond just a toggle, you would still have to type things in.

    I think having an extra GUI wrapper is a matter of complex balance, and made into reality by contributors and volunteers (or eventually, the devs themselves). To say everything should have a FULLY functional GUI if you have to configure it is a bit of an exaggeration and overreach.