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