diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..dd64637 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +## 2026-08-23 + +- Migrate all customizations to xscriptor-colors \ No newline at end of file diff --git a/README.md b/README.md index 04b6d49..f8bb48c 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@
Run the installer remotely with either curl or wget:
-curl -fsSL https://raw.githubusercontent.com/xscriptor/fresh/main/installer.sh | bash
+curl -fsSL https://raw.githubusercontent.com/xscriptor-colors/fresh/main/installer.sh | bash
-wget -qO- https://raw.githubusercontent.com/xscriptor/fresh/main/installer.sh | bash
+wget -qO- https://raw.githubusercontent.com/xscriptor-colors/fresh/main/installer.sh | bash
The installer creates ~/.config/fresh/themes if it does not exist and copies all themes there.
Uninstall
Remove the installed themes with:
-curl -fsSL https://raw.githubusercontent.com/xscriptor/fresh/main/uninstaller.sh | bash
+curl -fsSL https://raw.githubusercontent.com/xscriptor-colors/fresh/main/uninstaller.sh | bash
-wget -qO- https://raw.githubusercontent.com/xscriptor/fresh/main/uninstaller.sh | bash
+wget -qO- https://raw.githubusercontent.com/xscriptor-colors/fresh/main/uninstaller.sh | bash
This removes the themes provided by this repository. If the directory becomes empty, it is removed.
@@ -111,20 +111,20 @@ cp -f themes/*.json ~/.config/fresh/themes/
Related Documents
@@ -141,19 +141,19 @@ cp -f themes/*.json ~/.config/fresh/themes/
Related Repos
- - Terminal

- - Nvim

- - Jetbrains

+ - Terminal

+ - Nvim

+ - Jetbrains

- Gitnapse

- - Obsidian

+ - Obsidian

- XFetch

- - Vscode

+ - Vscode

X
-
+
&
diff --git a/SUPPORT.md b/SUPPORT.md
index 8a0207a..d950d1b 100644
--- a/SUPPORT.md
+++ b/SUPPORT.md
@@ -6,7 +6,7 @@ Need help with themes? Use the channels below.
Get Help
- - Open an issue: github.com/xscriptor/vscode/issues
+ - Open an issue: github.com/xscriptor-colors/vscode/issues
- Security reports: x@xscriptor.com (private disclosure only)
diff --git a/installer.sh b/installer.sh
index fafe5f3..5b54489 100644
--- a/installer.sh
+++ b/installer.sh
@@ -3,7 +3,7 @@ set -euo pipefail
DEST="${HOME}/.config/fresh/themes"
mkdir -p "${DEST}"
TMP_DIR="$(mktemp -d)"
-URL="https://codeload.github.com/xscriptor/fresh/tar.gz/refs/heads/main"
+URL="https://codeload.github.com/xscriptor-colors/fresh/tar.gz/refs/heads/main"
if command -v curl >/dev/null 2>&1; then
curl -fsSL "${URL}" | tar -xz -C "${TMP_DIR}"
elif command -v wget >/dev/null 2>&1; then