this post was submitted on 13 Apr 2024
213 points (90.8% liked)

Linux

47356 readers
1459 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
 
you are viewing a single comment's thread
view the rest of the comments
[–] rizoid@lemmy.dbzer0.com 53 points 5 months ago (3 children)

Garuda is great. It did get me addicted to the fish shell though and I've since moved back to windows for work reasons and I hate everything now.

[–] superfes@lemmy.world 28 points 5 months ago (1 children)

Install fish shell on all the things!

[–] DumbAceDragon@sh.itjust.works 5 points 5 months ago (2 children)

Honestly, fish is the only thing I hate about Garuda. The variety of commands is good, but doing any kinda scripting in it physically hurts me. Wish they kinda just stuck with a more conventional shell like zsh.

[–] SavvyBeardedFish@reddthat.com 6 points 5 months ago (2 children)

Feel like most people still do the scripting in Bash for portability reasons, and then just run Fish as the interactive shell

[–] flashgnash@lemm.ee 2 points 5 months ago

I use fish, have never once written a fish script. Just write bash scripts and they tend to work fine, otherwise run em in bash

[–] dan@upvote.au 2 points 5 months ago* (last edited 5 months ago)

still do the scripting in Bash for portability reasons,

For what it's worth, Debian and most of its derivatives use dash (a Linux port of ash) instead of bash for /bin/sh. It's ~4x faster and uses much less RAM than Bash. Usually the only scripts that use Bash are scripts that aren't POSIX compliant or that use Bash-specific features.

[–] zwekihoyy@lemmy.ml 3 points 5 months ago

just change it yourself

[–] governorkeagan@lemdro.id 4 points 5 months ago (2 children)

Possibly a n00b question. What’s the benefit of fish over zsh or bash? Does it provide something extra?

I’m using zsh at the moment.

[–] lemmyreader@lemmy.ml 7 points 5 months ago (1 children)

The auto suggestion from Fish shell is something I cannot live without anymore. Saves me so much time and avoiding typos. Not sure if zsh can do the same, maybe with a plugin ? If so, I'd like to hear about it. I use zsh for a few things, besides bash and fish to keep their history apart.

[–] ichbinjasokreativ@lemmy.world 2 points 5 months ago (1 children)

There IS a plugin for zsh that does exactly that and I've been using it without issue for a few months now!
https://github.com/zsh-users/zsh-autosuggestions

[–] lemmyreader@lemmy.ml 2 points 5 months ago

Thanks. Got it installed, and works after reading the Debian README :

Installation

Add the following to your .zshrc:

source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh

then start a new terminal session.

Tips

  1. To mimic fish's auto-completion by pressing Ctrl+F
bindkey '^F' autosuggest-accept
[–] fushuan@lemm.ee 2 points 5 months ago

Last time I checked it's like zsh but preconfigured and dumbed down. Like the zsh4humans repo, but worse.