Skip to content

Commit 61715a2

Browse files
Add install/uninstall scripts
1 parent 4cb03e9 commit 61715a2

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

css/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ code {
217217
border: 1px solid rgba(16, 185, 129, 0.3);
218218
border-radius: 12px;
219219
padding: 1rem;
220-
max-width: 800px;
220+
max-width: 530px;
221221
margin: 0 auto 4rem;
222222
display: flex;
223223
align-items: center;

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ <h1>Luca</h1>
8282

8383
<p style="text-align: center; margin-bottom: 1rem; font-weight: 600;">Get Started</p>
8484
<div class="install-command install-box">
85-
<pre><code>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/LucaTools/LucaScripts/HEAD/install.sh)"</code></pre>
85+
<pre><code>curl -fsSL https://luca.tools/install.sh | bash</code></pre>
8686
<button class="btn-copy" onclick="copyInstallCommand()">Copy</button>
8787
</div>
8888

@@ -268,7 +268,7 @@ <h2>Additional Features</h2>
268268
<span class="command">Uninstall Luca</span>
269269
</div>
270270
<p class="example-description">Completely remove Luca from your system:</p>
271-
<pre><code>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/LucaTools/LucaScripts/HEAD/uninstall.sh)"</code></pre>
271+
<pre><code>curl -fsSL https://luca.tools/uninstall.sh | bash</code></pre>
272272
</div>
273273
</div>
274274
<div class="command-examples grid-3">

install.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
curl -fsSL https://raw.githubusercontent.com/LucaTools/LucaScripts/HEAD/install.sh | bash

uninstall.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
curl -fsSL https://raw.githubusercontent.com/LucaTools/LucaScripts/HEAD/uninstall.sh | bash

0 commit comments

Comments
 (0)