Config File Overview
The config file lives at:
~/.config/wayscriber/config.toml
To start from the defaults:
mkdir -p ~/.config/wayscriber
cp /usr/share/doc/wayscriber/config.example.toml ~/.config/wayscriber/config.toml
If you built from source, use the repo file at config.example.toml.
Some distros may install the example under /usr/share/doc/wayscriber/ (path can vary by package).
Applying changes
Use the configurator when you want validation and backups:
wayscriber-configurator
Or edit TOML directly and restart the running overlay or daemon:
systemctl --user restart wayscriber.service
For one-shot mode, close Wayscriber and start it again. Runtime changes made from the overlay toolbar, such as toolbar visibility/order and section toggles, are saved back to the same config file.
Toolbar visibility and order
Hide individual toolbar items or whole side sections with stable IDs:
[ui.toolbar.items]
hidden = [
"top.utility.screenshot",
"top.tool.blur",
"side.group.presets",
]
Checked in the configurator means shown; IDs in hidden are hidden. Unknown future IDs
are preserved across saves so newer configs do not get destroyed by an older binary.
Reorder the supported groups with ui.toolbar.items.order:
[ui.toolbar.items.order]
top_tools = [
"top.tool.select",
"top.tool.pen",
"top.tool.marker",
"top.tool.eraser",
]
top_controls = [
"top.utility.text",
"top.utility.sticky-note",
"top.utility.screenshot",
"top.utility.clear-canvas",
]
side_sections = [
"side.group.colors",
"side.group.thickness",
"side.group.actions",
"side.group.pages",
"side.group.boards",
"side.group.settings",
]
Empty lists use the built-in order. Known IDs omitted from a non-empty list are appended in their default order. Side section ordering uses runtime section blocks; detailed tool-option sections such as eraser mode, polygon sides, and font can be hidden but are not independently orderable.
Named sessions
Default persistence is configured under [session]:
[session]
persist_transparent = true
persist_history = true
restore_tool_state = true
per_output = true
storage = "auto"
max_file_size_mb = 50
Use --session-file when you want a named session for a lecture, meeting, or project:
wayscriber --active --session-file ~/Documents/lecture-04.wayscriber-session
wayscriber --daemon-toggle --session-file ~/Documents/meeting.wayscriber-session
wayscriber --session-info --session-file ~/Documents/lecture-04.wayscriber-session
wayscriber --clear-session --session-file ~/Documents/lecture-04.wayscriber-session
--session-file uses the exact selected file and implies persistence for that run. It
does not create missing parent directories, rejects directories/symlinks/special files
for foreground Open/Save As flows, and conflicts with --no-resume-session.
See Sessions and Session Manager for CLI, overlay, and configurator workflows.