Skip to content

Display Settings

Configure visual preferences including chat panel font size and AI model selection.

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

SettingTypeDefaultDescription
Chat Font Sizefloat12ptFont size for the chat panel, adjustable from 8pt to 24pt
AI ModelenumLlama 3.3 70BLanguage model used for the built-in AI assistant

Controls the text size in the chat panel. Drag the slider to adjust between 8pt and 24pt. The current size is displayed next to the slider.

Internally, values are stored as retina pixels (2× the point size), so 12pt = 24.0px.

display.chat_font_size

Select the language model used by Plinken’s built-in AI assistant. Each model has different strengths:

ModelDescription
Llama 3.3 70BFast, general purpose
Qwen3 30BMultilingual, efficient
QwQ 32BReasoning, step-by-step
Codex (OpenAI)Local OpenAI Codex
Claude Code (Anthropic)Claude Code with tool calling
display.ai_model_index

Read and write display settings via the settings API:

-- Get current chat font size (retina pixels)
local size = pl.cmd("settings:get", { key = "display.chat_font_size" })
-- Set chat font size to 14pt (28px retina)
pl.cmd("settings:set", { key = "display.chat_font_size", value = "28" })
-- Get AI model index (0=Llama, 1=Qwen3, 2=QwQ, 3=Codex, 4=Claude)
local model = pl.cmd("settings:get", { key = "display.ai_model_index" })
-- Switch to QwQ reasoning model
pl.cmd("settings:set", { key = "display.ai_model_index", value = "2" })
KeyTypeDefaultRange
display.chat_font_sizefloat24.016.0–48.0 (retina px)
display.ai_model_indexint00–4
display.scalefloat1.0UI scale factor
display.show_fpsboolfalseShow FPS counter