From 9b3595622e3f5f4ca54c3f9db3d9aac6e5ba320f Mon Sep 17 00:00:00 2001 From: Sarthak <118442597+sarthak1337-alt@users.noreply.github.com> Date: Mon, 14 Sep 2026 17:09:12 +0530 Subject: [PATCH] docs: update clone and remote URLs to GitHub mirror --- README.md | 3 ++- install.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b2674b9..a5503ea 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,8 @@ curl -fsSL https://rice.srtk.in/install.sh | bash or from a clone: ```sh -git clone https://git.srtk.in/sarthak/dotfiles.git ~/rice +git clone https://github.com/sarthak1337-alt/dotfiles.git ~/rice +# or self-hosted: git clone https://git.srtk.in/sarthak/dotfiles.git ~/rice ~/rice/install.sh # full install, safe to re-run ~/rice/install.sh --dry-run # print every step, change nothing ~/rice/install.sh --update # pull, re-link, re-render, rebuild what changed diff --git a/install.sh b/install.sh index 619aa8d..c1cbec9 100755 --- a/install.sh +++ b/install.sh @@ -13,7 +13,7 @@ # splash. Anything it would replace is moved to ~/.rice-backup-/ first. set -uo pipefail -RICE_REMOTE="${RICE_REMOTE:-https://git.srtk.in/sarthak/dotfiles.git}" +RICE_REMOTE="${RICE_REMOTE:-https://github.com/sarthak1337-alt/dotfiles.git}" RICE_HOME="${RICE_HOME:-$HOME/rice}" STATE="${XDG_STATE_HOME:-$HOME/.local/state}/rice" BACKUP="$HOME/.rice-backup-$(date +%Y%m%d-%H%M%S)"