• 7 Posts
  • 192 Comments
Joined 3 years ago
cake
Cake day: June 14th, 2023

help-circle
  • Then he said Arch Linux should implement it anyway because the law requires it. archinstall PR #4290

    Well, it’s not “the law”, it’s your local law. To most people on the planet, it doesn’t apply any more than for example North Korea’s laws. As far as I can find, Arch Linux is not owned by a foundation or similar legal entity (i.e. which could have been located in California), but the lead developer appears to live in Germany.







  • Very important. I spend a lot of time at my computer and my desktop environment is like my home. I want it to look in a way that I find aesthetically pleasing and it mustn’t try to force me to change the way I work because some UX designer decided that their way was much better than everybody else’s. Perhaps you can guess where this is going :D but I’ve tried to like Gnome 3 since it was first announced. I’ve given it multiple chances but it just doesn’t work for me. It feels like they’re going down the same road as all “modern” UIs, where only the most basic features are visible and everything else is either dumped into the “advanced” category or removed entirely. On the other hand, I have a coworker who only uses his PC like a tool, and he thinks Gnome is the best DE ever and can’t understand why anyone would want something else.

    Currently I use KDE and I’m pretty happy with it. It’s highly configurable, and I’ve made it look and feel the way I want. I used mainly Xfce for a long time but now I prefer KDE.



  • I think a new Linux user shouldn’t have to choose a DE, so starting with a distro which makes this choice for them is most likely better. Unless the CachyOS installer does a good job at explaining what a desktop environment is, there’s a risk that a new user thinks they’re just selecting a skin for the OS and don’t understand how it will affect their desktop experience. If they for example choose an extreme light weight DE for their brand new gaming PC, their first impression of Linux might be that it looks dated.

    Having a DE chooser built into more distro installers could be a good thing for us more experienced users though.





  • These aliases for zsh I use all the time. It’s part of the prezto configuration framework.

    setopt AUTO_CD              # Auto changes to a directory without typing cd.
    setopt AUTO_PUSHD           # Push the old directory onto the stack on cd.
    setopt PUSHD_IGNORE_DUPS    # Do not store duplicates in the stack.
    setopt PUSHD_SILENT         # Do not print the directory stack after pushd or popd.
    setopt PUSHD_TO_HOME        # Push to home directory when no argument is given.
    
    alias d='dirs -v'
    for index ({1..9}) alias "$index"="cd +${index}"; unset index
    

    Type d and enter to list all the directories you’ve recently been in, then type the number at the start of the line followed by enter to immediately cd there.

    Not sure if latest bash can do it the same thing, but some years ago I wrote a script to implement it there too. IIRC it might’ve been the automatic removal of duplicates in dir history that was missing.