Configuration

Configure Kiosk Library settings, commands, and preferences.

Overview

Kiosk’s configuration is accessible from Settings in the main application. All settings are stored locally on your machine and never sent anywhere.

General Settings

SettingDescriptionDefault
ThemeLight or dark UI themeDark
LanguageInterface languageEnglish
Thumbnail SizeDefault thumbnail size in the gridMedium
Default ActionWhat happens on double-clickOpen File
Start with OSLaunch Kiosk when your computer startsOff

Library Settings

SettingDescription
Cache DirectoryWhere Kiosk stores thumbnails and indexes
Auto-RefreshAutomatically re-scan sources on launch
Scan SubdirectoriesInclude files in subdirectories when scanning

Plugin Settings

Each DCC plugin has its own configuration section:

  • Watch Folder — Local folder used for plugin communication.
  • Commands — Custom command scripts that execute in the DCC app.
  • Export Plugin — Download the plugin file for manual installation.

See the Plugins page for per-DCC details.

Custom Commands

Custom commands allow you to define what happens when you interact with a file from within your DCC app. Each command is associated with a file extension and runs inside the DCC app’s scripting environment.

Available Variables

VariableDescriptionExample
{path}Full file path/assets/model.fbx
{name}File name without extensionmodel
{ext}File extension.fbx
{dir}Parent directory path/assets/

Example: Multi-Line Command

Commands can span multiple lines for complex operations:

# Import FBX and center at origin
bpy.ops.import_scene.fbx(filepath="{path}")
obj = bpy.context.active_object
obj.location = (0, 0, 0)
obj.name = "{name}"

License

  • Activate — Enter your license key in Settings → License → Activate.
  • Deactivate — You can deactivate your license to move it to another machine.
  • Status — View your current license status and type (Free, Pro, or Studio).

Data & Privacy

Kiosk is fully offline. No data is collected, no analytics are tracked, and your files never leave your machine. The only network activity is:

  • Checking for updates (optional, can be disabled)
  • Gumroad license validation (one-time, on activation)