A paper of your own

Install Orifude.

Orifude 1.0.0 is ready. Choose one method below, copy the commands into your terminal, and open your first paper.

Release 1.0.0 and downloads

Linux & macOS · POSIX installer

Download the installer first. After the download succeeds, inspect the file before running it. The next command creates a directory in your user account.

curl --fail --location --proto '=https' --proto-redir '=https' --tlsv1.2 \
  --output install.sh https://github.com/nuggocto/orifude/releases/download/v1.0.0/install.sh

After inspecting the downloaded file, run:

mkdir -p "$HOME/.local/bin" &&
  sh install.sh --bin-dir "$HOME/.local/bin"

Add the destination to your PATH through your usual shell or system settings. The installer leaves your profile unchanged.

For Linux kernel 5.10 or newer on x86_64 and ARM64, and macOS 13 or newer on Intel and Apple Silicon. Requires curl, tar, and sha256sum or shasum.

Windows · PowerShell

Download the installer first. After the download succeeds, inspect the file before running it. The next command creates a directory in your user account.

curl.exe --fail --location --proto '=https' --proto-redir '=https' --tlsv1.2 `
  --output install.ps1 https://github.com/nuggocto/orifude/releases/download/v1.0.0/install.ps1
if ($LASTEXITCODE -ne 0) { throw 'Installer download failed.' }

After inspecting the downloaded file, run:

New-Item -ItemType Directory -Force -ErrorAction Stop -Path "$env:LOCALAPPDATA\Programs\Orifude"
powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -File .\install.ps1 -BinDir "$env:LOCALAPPDATA\Programs\Orifude"

Add the destination to your PATH through your usual shell or system settings. The installer leaves your profile unchanged.

The command allows the inspected script in its own PowerShell process without changing your saved execution policy.

For Windows 10 22H2 or newer on x86_64. Windows ARM64 is not supported.

macOS · Homebrew

With Homebrew installed, run:

brew install nuggocto/tap/orifude

The formula supports macOS 13 or newer on Intel and Apple Silicon.

Windows · Scoop

With Scoop installed, add our bucket and install Orifude:

scoop bucket add nuggocto https://github.com/nuggocto/scoop-bucket
scoop install nuggocto/orifude

For Windows 10 22H2 or newer on x86_64. Windows ARM64 is not supported.

Arch Linux · yay

With yay installed, run this command. Review the AUR package when prompted.

yay -S orifude-bin

The orifude-bin package installs the verified Linux binary for x86_64 or ARM64.

Open your first paper.

Once Orifude is on your PATH, open a terminal with at least 80 columns and 24 rows, then run:

orifude

Use your keyboard to play. Your progress stays on your computer, and the game works entirely offline.

Verify your download

GitHub CLI can verify the immutable release and an asset you downloaded. Replace the final filename with your local release asset.

gh release verify v1.0.0 --repo nuggocto/orifude
gh release verify-asset v1.0.0 ./DOWNLOADED_ASSET --repo nuggocto/orifude