6
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 01 Feb 2024
6 points (100.0% liked)
Distro Hopping - For People That Can't Make A Decision
84 readers
2 users here now
Pros/Cons of each distribution, personal experiences, that kind of stuff.
Other Linux related communities:
- !linux@lemmy.ml
- !linux@lemmy.world
- !linuxmemes@lemmy.world
- !linux_gaming@lemmy.world
- !steamdeck@sopuli.xyz
Aiming to create something similar to r/DistroHopping.
founded 10 months ago
MODERATORS
What does prezto do? Is it similar to oh-my-zsh? Have you ever tried fish shell?
Yeah, very similar. And I used to use fish, but I got fed up with it not supporting bash scripts, so now I just have prezto with plugins that make it act exactly like fish ๐
I used to use zsh with oh-my-zsh and Powerlevel10k before I switched to fish. I actually considered going back to zsh (don't remember why) but now I'm pretty happy with fish. What to you mean with fish not supporting bash scripts? A bash script should always have
#!/bin/bash
at the beginning of the file, that way it will always be executed in bash, even if you run it from fish.I can't remember the details, it was 6 or 7 years ago that I switched, but it was something at work that wasn't working because fish used a different scripting language
That's strange. If you ever want to try fish again, you can do this to avoid problems with bash scripts:
#!/usr/bin/env sh
at the beginning of scriptsbash script.sh