shellfox/html/error.html
2024-03-04 14:34:56 -06:00

33 lines
1.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8" />
<title id="errorPageTitle">Shellfox error</title>
</head>
<body>
<h1 id="errorTitle">Shellfox failed to run command</h1>
<h2><span class="command"></span></h2>
<h3 id="notInstalled">It seems that Shellfox is not fully installed!</h3>
<p id="notInstalledDesc">Shellfox, unlike most extensions, requires a script to be installed on your computer. This script, <code>shellfox.sh</code>, is what allows us to execute shell commands.</p>
<h3 id="installTitle">Completing installation</h3>
<p id="installIntro">To install Shellfoxes local component:</p>
<ol>
<li id="installStep1">Download the script through the repositorys ZIP archive <a href="https://hak.xwx.moe/jadedctrl/shellfox/archive/master.zip">here</a>.</li>
<li id="installStep2">Extract the ZIP archive: This leaves a <code>shellfox/</code> folder.</li>
<li id="installStep3">Open a terminal within that <code>shellfox/</code> folder.</li>
<li id="installStep4">Run the command, <code>$ sudo make native-install</code></li>
<li id="installStep5">Youre done: Party!!</li>
</ol>
<p id="installTerminalIntro">From a terminal, that would look something like:</p>
<code>$ curl https://hak.xwx.moe/jadedctrl/shellfox/archive/master.tar.gz | tar -xzv</code><br>
<code>$ cd shellfox/</code><br>
<code>$ sudo make native-install</code><br>
</body>
<script src="error.js"></script>
</html>