mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
This patch adds support for creating utmp records using the ‘utempter’ helper binary from the ‘libutempter’ package. * New config option ‘main.utempter’ * New meson command line option, -Ddefault-utempter-path. Defaults to auto-detecting the path. The default value of the new ‘main.utempter’ config option depends on the meson command line option ‘-Ddefault-utempter-path’. If ‘main.utempter’ is *not* set to ‘none’, foot will try to execute the utempter helper binary to create utmp records when a new terminal is instantiated. The record is removed when the terminal instance is destroyed.
26 lines
1.3 KiB
Meson
26 lines
1.3 KiB
Meson
option('docs', type: 'feature',
|
|
description: 'Build and install documentation (man pages, example foot.ini, readme, changelog, license etc).')
|
|
|
|
option('themes', type: 'boolean', value: true,
|
|
description: 'Install themes (predefined color schemes)')
|
|
|
|
option('ime', type: 'boolean', value: true,
|
|
description: 'IME (Input Method Editor) support')
|
|
|
|
option('grapheme-clustering', type: 'feature',
|
|
description: 'Enables grapheme clustering using libutf8proc. Requires fcft with harfbuzz support to be useful.')
|
|
|
|
option('tests', type: 'boolean', value: true, description: 'Build tests')
|
|
|
|
option('terminfo', type: 'feature', value: 'enabled', description: 'Build and install foot\'s terminfo files.')
|
|
option('default-terminfo', type: 'string', value: 'foot',
|
|
description: 'Default value of the "term" option in foot.ini.')
|
|
|
|
option('custom-terminfo-install-location', type: 'string', value: '',
|
|
description: 'Path to foot\'s terminfo, relative to ${prefix}. If set, foot will set $TERMINFO to this value in the client process.')
|
|
|
|
option('systemd-units-dir', type: 'string', value: '',
|
|
description: 'Where to install the systemd service files (absolute path). Default: ${systemduserunitdir}')
|
|
|
|
option('default-utempter-path', type: 'string', value: '',
|
|
description: 'Default path to utempter helper binary. Default: auto-detect')
|