Skip to content

Getting Started

Benjamin Demetz edited this page Jun 19, 2025 · 3 revisions

Tooka is designed to be simple, fast, and cross-platform — it runs on macOS, Windows, and Linux with no setup hassle.


📥 Installation

You can download the appropriate Tooka binary from the official website:

👉 https://tooka.deno.dev/download

The website offers:

  • Direct downloads of prebuilt binaries (built via GitHub Actions)
  • A list of officially supported package managers

Note

Don’t see your preferred package manager listed? Feel free to open an issue, and I’ll take a look!


🚀 First Run

After installation, verify that Tooka is installed correctly:

tooka --version

This command also initializes the default config if it's not already set up. You should see the latest version printed to the terminal.


✨ Your First Rule

Let’s walk through your first Tooka session:

  1. Create a new rule Use the online rule builder or generate a template using the CLI:

    tooka template --help

Tip

Use --help with any command to understand what it does before running it.


  1. Dry-run your rule Test your setup without making any changes:

    tooka sort --dry-run ~/Downloads

Warning

Always start with a dry-run! Tooka cannot undo actions. Be safe and preview changes first.


  1. Run it for real Once you’re confident, remove the --dry-run flag:

    tooka sort ~/Downloads

  1. Explore more commands To see all available commands and options:

    tooka --help

📘 Learn More

To learn how rules work and how to customize them, continue to: 👉 How Rules Work

Clone this wiki locally