docs: make setup links compatible with Fish shell
as you know, fish is not posix-compliant, so it doesn't support bash syntax like bash <(curl -L ...)
so i used bash -c to tell fish to run the command with bash. this way, it won't break the setup script.
the final command is:
for arch
bash -c "$(curl -fsSL https://raw.githubusercontent.com/mylinuxforwork/dotfiles/main/setup-arch.sh)"
for fedora
bash -c "$(curl -fsSL https://raw.githubusercontent.com/mylinuxforwork/dotfiles/main/setup-fedora.sh)"
yeah, this doesn't break anything. i tested the arch script, and it works fine.
Great. I will test.
@harilvfs I would provide the link in the format
bash -c "$(curl -s https://raw.githubusercontent.com/mylinuxforwork/dotfiles/main/setup-arch.sh)"
What do you think?
yeah that will also work fine. i will update that & btw have you tested with that ?
Yes. Trsts were successful.
Ok you can merge this one (squash & merge). I will update this links on wiki pr as well later soon.