mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-23 20:35:42 +02:00
19 lines
780 B
Meson
19 lines
780 B
Meson
option(
|
|
'backend-x11', type: 'feature', value: 'enabled', description: 'XCB (X11) backend')
|
|
option(
|
|
'backend-wayland', type: 'feature', value: 'enabled', description: 'Wayland backend')
|
|
option(
|
|
'core-plugins-as-shared-libraries', type: 'boolean', value: false,
|
|
description: 'Compiles modules, particles and decorations as shared libraries, which are loaded on-demand')
|
|
option(
|
|
'plugin-mpd', type: 'feature', value: 'auto',
|
|
description: 'Music Player Daemon (MPD) support')
|
|
option(
|
|
'plugin-pulse', type: 'feature', value: 'auto',
|
|
description: 'PulseAudio support')
|
|
option(
|
|
'plugin-pipewire', type: 'feature', value: 'auto',
|
|
description: 'Pipewire support')
|
|
option(
|
|
'plugin-dwl', type: 'feature', value: 'auto',
|
|
description: 'DWL (dwm for wayland) support')
|