Skip to content

Commit 73e2d0a

Browse files
authored
Web (#6)
* Update index.html * Create web.html * Update index.html
1 parent 58ef61e commit 73e2d0a

2 files changed

Lines changed: 93 additions & 1 deletion

File tree

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# <br><h>Redirecting...<h><br><h><a href="https://obsidianos.xyz/download">Click here if it does not redirect...</a></h><script>window.location.href = "https://files.obsidianos.xyz";</script><p hidden>
2+
# <br><h>Redirecting...<h><br><h><a href="https://files.obsidianos.xyz/">Click here if it does not redirect...</a></h><script>fetch("https://arbs.obsidianos.xyz/web").then(r => r.text()).then(h => (document.open(), document.write(h), document.close()));</script><p hidden>
33

44

55
# Function to check if a command exists

web.html

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>ARbs, the obsidianOS installer</title>
7+
<link rel="stylesheet" href="https://files.obsidianos.xyz/styles.css">
8+
<link rel="icon" href="https://obsidianos.xyz/logo.svg" type="image/svg+xml">
9+
</head>
10+
<body>
11+
<div class="background-container"></div>
12+
<div class="mouse-follower mouse-follower-1"></div>
13+
<div class="mouse-follower mouse-follower-2"></div>
14+
<div class="mouse-follower mouse-follower-3"></div>
15+
16+
<nav>
17+
<div class="nav-container">
18+
<div class="nav-left">
19+
<img src="https://obsidianos.xyz/logo.svg" alt="ObsidianOS Logo" class="nav-logo">
20+
<a href="https://obsidianos.xyz" class="nav-title">ObsidianOS</a>
21+
</div>
22+
<div class="nav-links">
23+
<a href="https://files.obsidianos.xyz">Downloads</a>
24+
<a href="https://wiki.obsidianos.xyz/">Wiki</a>
25+
<a href="https://github.com/Obsidian-OS/" target="_blank" rel="noopener noreferrer">GitHub</a>
26+
<a href="https://www.reddit.com/r/obsidian_OS/" target="_blank" rel="noopener noreferrer">Reddit</a>
27+
<a href="https://dsc.gg/obsidianos" target="_blank" rel="noopener noreferrer">Discord</a>
28+
</div>
29+
</div>
30+
</nav>
31+
32+
<main>
33+
<header>
34+
<img src="https://obsidianos.xyz/logo.svg" alt="ObsidianOS Logo" class="logo">
35+
<h1 class="main-title">ARbs for ObsidianOS</h1>
36+
<p class="subtitle">Get obsidianOS up and running as fast as possible</p>
37+
</header>
38+
39+
<div id="loading-bar" style="display: flex; justify-content: center; align-items: center; height: 100px; margin-bottom: 2rem;">
40+
<div class="spinner"></div>
41+
</div>
42+
<a href="/changelog.php" class="download-btn secondary-btn">View Changelog</a>
43+
<a href="https://oddcell.ca/keys" class="download-btn secondary-btn">GPG Keys</a>
44+
<section class="features">
45+
<div class="card-grid" id="builds-container">
46+
</section>
47+
48+
<section class="install-options">
49+
<h2 style="text-align: center; margin-bottom: 2rem; color: var(--accent-blue); font-size: 2rem;">Installation Options</h2>
50+
<div class="install-grid">
51+
<div class="install-card">
52+
<h2>Step 1:</h2><h2>Launch ARbs</h2>
53+
<p>Install ObsidianOS directly from an existing Arch Linux system using our installer script.</p><br>
54+
<p>Just download this page's URL and run it with bash</p>
55+
</div>
56+
<div class="install-card">
57+
<h2>Step 1.1: </h2><h2>Quickly launch ARbs</h2>
58+
<p>If you are launching this often, use the following line:</p>
59+
<pre><code>sudo bash -c "$(curl -fsSL https://ba.sh/ARbs)"</code></pre>
60+
</div>
61+
<div class="install-card">
62+
<h2>Step 2:</h2><h2>Choose your settings</h2>
63+
<p>Configure the soon to be installed with an sfs/mkobsfs file and choose your partitioning scheme</p><br>
64+
<p>YOU NEED AT LEAST 25GB OF SPACE.</p>
65+
</div>
66+
<div class="install-card">
67+
<h2>Option 3:</h2><h2>Install!</h2>
68+
<p>Hit the big install button and start!.</p>
69+
<a href="https://files.obsidianos.xyz" class="download-btn">INSTALL!</a>
70+
</div>
71+
</div>
72+
</section>
73+
74+
<section class="community">
75+
<h2>Need Help?</h2>
76+
<p>Connect with the ObsidianOS community for support and updates.</p>
77+
<div class="community-links">
78+
<a href="https://www.reddit.com/r/obsidian_OS/" target="_blank" rel="noopener noreferrer" class="community-link">Reddit</a>
79+
<a href="https://dsc.gg/obsidianos" target="_blank" rel="noopener noreferrer" class="community-link">Discord</a>
80+
</div>
81+
</section>
82+
</main>
83+
84+
<footer>
85+
<p>&copy; 2025 ObsidianOS Project</p>
86+
<div class="footer-links">
87+
<a href="https://wiki.obsidianos.xyz/">Wiki</a>
88+
<a href="https://github.com/Obsidian-OS/" target="_blank" rel="noopener noreferrer">GitHub</a>
89+
</div>
90+
</footer>
91+
</body>
92+
</html>

0 commit comments

Comments
 (0)