Installation Guide

Get started with TheSecretJuice in minutes. Choose your installation method below.

Quick Install (Recommended)

One command to install everything. Works on Windows, Linux, and macOS.

iwr https://raw.githubusercontent.com/mini-page/TheSecretJuice/main/install.ps1 | iex

Then reload your profile:

. $PROFILE

What it does:

  • Downloads TheSecretJuice repository
  • Installs all enhancement modules
  • Configures your PowerShell profile
  • Checks for required dependencies
  • Provides download links for missing tools

Requirements

PowerShell

Optional CLI Tools Recommended

yt-dlp

For video downloads

Download
eza

For enhanced listings

Download
zoxide

For smart navigation

Download
fzf

For fuzzy finding

Download

Manual Installation

1. Clone Repository

git clone https://github.com/mini-page/TheSecretJuice.git
cd TheSecretJuice

2. Copy Files (Windows)

$dest = "$env:USERPROFILE\Documents\PowerShell\Scripts\TheSecretJuice"
Copy-Item -Path ".\*" -Destination $dest -Recurse

2. Copy Files (Linux/macOS)

mkdir -p ~/.config/powershell/Scripts/TheSecretJuice
cp -r ./* ~/.config/powershell/Scripts/TheSecretJuice/

3. Add to Profile

# Edit profile
notepad $PROFILE  # Windows
nano $PROFILE     # Linux/macOS

# Add these lines:
$juicePath = "$env:USERPROFILE\Documents\PowerShell\Scripts\TheSecretJuice\Steroids"
. "$juicePath\yt-dlp-enhance.ps1"
. "$juicePath\nav-enhance.ps1"
. "$juicePath\robocopy-enhance.ps1"

Verify Installation

Run these commands to verify:

yt-help
nav-help
robo-help

If you see help messages, you're all set!