Skip to content

Commit 56a4dde

Browse files
committed
Updating page
1 parent 7eb6277 commit 56a4dde

File tree

1 file changed

+30
-10
lines changed

1 file changed

+30
-10
lines changed

docs/index.html

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,17 @@ <h3 class="mono">macOS</h3>
324324
<li>Accessibility (Injection)</li>
325325
<li>Microphone (Audio)</li>
326326
</ul>
327+
<div class="code-wrapper">
328+
<button
329+
class="copy-btn mono"
330+
onclick="copyCode(this)"
331+
>
332+
COPY
333+
</button>
334+
<pre>
335+
launchctl kickstart -k gui/$(id -u)/com.onevox.daemon</pre
336+
>
337+
</div>
327338
</div>
328339
<div class="install-box">
329340
<h3 class="mono">Linux</h3>
@@ -374,14 +385,11 @@ <h3 class="mono">Windows</h3>
374385
>
375386
COPY
376387
</button>
377-
<pre>$onevoxDir = "$env:LOCALAPPDATA\onevox"
378-
<span class="highlight">Invoke-WebRequest</span> -Uri "https://github.com/kssgarcia/onevox/releases/latest/download/onevox-windows-x86_64.zip" -OutFile onevox-windows-x86_64.zip
379-
<span class="highlight">Expand-Archive</span> -Path onevox-windows-x86_64.zip -DestinationPath $onevoxDir -Force
380-
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";$onevoxDir", [EnvironmentVariableTarget]::User)</pre>
388+
<pre>
389+
$onevoxDir="$env:LOCALAPPDATA\onevox";$asset="onevox-windows-x86_64.zip";Invoke-WebRequest -Uri "https://github.com/kssgarcia/onevox/releases/latest/download/$asset" -OutFile $asset;Expand-Archive -Path $asset -DestinationPath $onevoxDir -Force;[Environment]::SetEnvironmentVariable("Path",$env:Path+";$onevoxDir",[EnvironmentVariableTarget]::User);$env:Path+=";$onevoxDir";& "$onevoxDir\onevox.exe" --version</pre
390+
>
381391
</div>
382-
<p style="font-size: 12px; margin-top: 20px">
383-
HOTKEY:
384-
</p>
392+
<p style="font-size: 12px; margin-top: 20px">HOTKEY:</p>
385393
<p style="font-size: 14px" class="mono">
386394
CTRL + SHIFT + SPACE
387395
</p>
@@ -438,7 +446,7 @@ <h3 class="mono">Windows</h3>
438446
</button>
439447
</div>
440448
<div class="cmd-item">
441-
<code>onevox models download whisper-base.en</code>
449+
<code>onevox models download ggml-base.en</code>
442450
<button
443451
class="copy-btn mono"
444452
style="
@@ -526,15 +534,27 @@ <h2 class="mono" style="margin-bottom: 20px">
526534
<div class="mono" style="color: #fff; margin-bottom: 10px">
527535
Build_From_Source
528536
</div>
537+
529538
<p style="margin-bottom: 20px">
530-
Requires Rust (Cargo) and LLVM/Clang.
539+
Requires Rust (Cargo) and LLVM/Clang.<br />
540+
CUDA Toolkit required for Windows (NVIDIA GPUs).
531541
</p>
532-
<div class="code-wrapper">
542+
543+
<!-- macOS -->
544+
<div class="code-wrapper" style="margin-bottom: 15px">
533545
<button class="copy-btn mono" onclick="copyCode(this)">
534546
COPY
535547
</button>
536548
<pre><span class="highlight">cargo</span> build --release --features metal</pre>
537549
</div>
550+
551+
<!-- Windows -->
552+
<div class="code-wrapper">
553+
<button class="copy-btn mono" onclick="copyCode(this)">
554+
COPY
555+
</button>
556+
<pre><span class="highlight">cargo</span> build --release --features cuda</pre>
557+
</div>
538558
</div>
539559
</section>
540560

0 commit comments

Comments
 (0)