Skip to content

Locations

Configure where Plinken stores projects, recordings, and data files.

Open from Settings > Locations (keyboard shortcut: Cmd+, then select the Locations tab).

SettingTypeEditableDescription
Plinken Document RootpathYesRoot folder for projects and recordings
Database PathpathNoSQLite database location (read-only, set in config file)
ExtensionspathYesDirectory for downloaded AI models and plugins

The document root is where Plinken stores all projects and recordings. Each project gets its own subfolder within this directory.

  • Type or paste a path, or click Browse to open a file picker
  • Changes take effect immediately — no restart required
  • The path is displayed in a text input; for long paths, the end (most relevant part) is shown

On macOS: ~/Documents/Plinken/

projects.default_path

The SQLite database stores user settings, project metadata, and session state. This path is read-only in the UI — it’s configured in the application config file and requires a restart to change.

The config file location is shown as help text below the field (typically ~/.plinken/config.json or platform equivalent).

The extensions directory stores downloaded AI models, plugins, and other extension files. Click Set after editing the path to apply changes.

The default extensions directory is determined by the platform’s standard application support directory.

-- Get the document root path
local root = pl.cmd("settings:get", { key = "projects.default_path" })
-- Set a new document root
pl.cmd("settings:set", { key = "projects.default_path", value = "/Users/me/Music/Plinken" })
KeyTypeDefaultDescription
projects.default_pathstring""Document root for projects
projects.auto_save_secondsint60Auto-save interval (0 = disabled)