From 663c3483be03585921ea37a5255631c9da0b2256 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Thu, 5 Jun 2025 00:25:28 +0545 Subject: [PATCH 1/2] chore: make setup url compatible with fish shell as fish is a non-posix-compliant shell, it doesn't support bash syntax like bash <(), so i have changed the url to one that fish shell supports. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c3a78267..644aa8c3f 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ - **Prerequisite**: Your system works. That's it. You don't have to reinstall your system! - **Automatic**, but guided and transparent, installation for Arch(-based) Linux: ```bash - bash <(curl -s "https://end-4.github.io/dots-hyprland-wiki/setup.sh") + bash -c "$(curl -s https://end-4.github.io/dots-hyprland-wiki/setup.sh)" ``` - **Manual** installation, other distros and more: - See the [Wiki](https://end-4.github.io/dots-hyprland-wiki/en/i-i/01setup/) From 56bb53ed9587c46d873705654877bbb7dd402ad3 Mon Sep 17 00:00:00 2001 From: Hari Chalise Date: Thu, 5 Jun 2025 16:32:07 +0545 Subject: [PATCH 2/2] sep for fish shell --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 644aa8c3f..94c7177de 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,14 @@ - **Prerequisite**: Your system works. That's it. You don't have to reinstall your system! - **Automatic**, but guided and transparent, installation for Arch(-based) Linux: ```bash + bash <(curl -s "https://end-4.github.io/dots-hyprland-wiki/setup.sh") + ``` + + If you are using fish shell (non-posix-compliant shell) then: + ```bash bash -c "$(curl -s https://end-4.github.io/dots-hyprland-wiki/setup.sh)" ``` + - **Manual** installation, other distros and more: - See the [Wiki](https://end-4.github.io/dots-hyprland-wiki/en/i-i/01setup/) - (_Available in: English, Vietnamese, and Simplified Chinese. Translations are welcome._)