Update README, adjust calls to install scripts

This commit is contained in:
Sam
2025-01-09 17:35:33 +10:00
parent fac895dc14
commit 16628c3ec8
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -4,7 +4,7 @@
</a> </a>
</div> </div>
<h1 align="center">Proxmox arm64 Install Scripts</h1> <h1 align="center">Proxmox arm64 Install Scripts</h1>
<h3 align="center">an unofficial port of tteck's Helper-Scripts to arm64!</h3> <h3 align="center">a port of the Promox VE Helper-Scripts to arm64!</h3>
<p align="center"> <p align="center">
<a href="https://pimox-scripts.com">Website</a> | <a href="https://pimox-scripts.com">Website</a> |
@@ -21,7 +21,7 @@
### About ### About
Ports of tteck's proxmox scripts to ARM64. Ports of the [Promox VE Helper Scripts](https://github.com/community-scripts/proxmoxve) to ARM64.
Find the scripts in the website linked above. Find the scripts in the website linked above.
@@ -5,7 +5,7 @@ import { BookOpenText, Code, Globe } from "lucide-react";
import Link from "next/link"; import Link from "next/link";
const generateSourceUrl = (slug: string, type: string) => { const generateSourceUrl = (slug: string, type: string) => {
const baseUrl = `https://raw.githubusercontent.com/community-scripts/${basePath}/main`; const baseUrl = `https://raw.githubusercontent.com/asylumexp/${basePath}/main`;
return type === "ct" return type === "ct"
? `${baseUrl}/install/${slug}-install.sh` ? `${baseUrl}/install/${slug}-install.sh`
: `${baseUrl}/${type}/${slug}.sh`; : `${baseUrl}/${type}/${slug}.sh`;
+4 -4
View File
@@ -6,7 +6,7 @@ export const basePath = process.env.BASE_PATH;
export const navbarLinks = [ export const navbarLinks = [
{ {
href: `https://github.com/community-scripts/${basePath}`, href: `https://github.com/asylumexp/${basePath}`,
event: "Github", event: "Github",
icon: <FaGithub className="h-4 w-4" />, icon: <FaGithub className="h-4 w-4" />,
text: "Github", text: "Github",
@@ -18,13 +18,13 @@ export const navbarLinks = [
text: "Discord", text: "Discord",
}, },
{ {
href: `https://github.com/community-scripts/${basePath}/blob/main/CHANGELOG.md`, href: `https://github.com/asylumexp/${basePath}/blob/main/CHANGELOG.md`,
event: "Change Log", event: "Change Log",
icon: <Scroll className="h-4 w-4" />, icon: <Scroll className="h-4 w-4" />,
text: "Change Log", text: "Change Log",
}, },
{ {
href: `https://github.com/community-scripts/${basePath}/discussions`, href: `https://github.com/asylumexp/${basePath}/discussions`,
event: "Discussions", event: "Discussions",
icon: <MessagesSquare className="h-4 w-4 hidden sm:block" />, icon: <MessagesSquare className="h-4 w-4 hidden sm:block" />,
text: "Discussions", text: "Discussions",
@@ -38,7 +38,7 @@ export const mostPopularScripts = [
]; ];
export const analytics = { export const analytics = {
url: "analytics.proxmoxve-scripts.com", url: "-",
token: "b60d3032-1a11-4244-a100-81d26c5c49a7", token: "b60d3032-1a11-4244-a100-81d26c5c49a7",
}; };