marten/config/settings.toml

34 lines
1.1 KiB
TOML

# marten — default settings
#
# This file is shipped as the default. To customize, copy to:
# $XDG_CONFIG_HOME/marten/settings.toml
# (usually ~/.config/marten/settings.toml)
#
# Settings are scalar values that affect runtime behavior. Key bindings
# live in keymap.toml, not here.
#
# All fields are optional — missing fields use the defaults shown below.
# Seconds between auto-advances in slideshow mode.
slideshow_interval_secs = 3.0
# Thumbnail edge length in pixels (square thumbnails).
# Must be between 16 and 256.
thumbnail_size = 72
# How many thumbnails ahead/behind the current image to cache.
# Higher = smoother scrolling but more memory; lower = less memory but
# more re-decoding as you scroll.
thumbnail_cache_window = 15
# Zoom mode applied when a new image is loaded.
# "FitToWindow" or "ActualSize".
default_zoom_mode = "FitToWindow"
# Whether the thumbnail strip auto-scrolls to follow the current image
# (video-editor-timeline behavior).
smooth_scroll_thumbnails = true
# Whether the "Press F11 to exit fullscreen" hint is shown.
show_fullscreen_hint = true