mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-27 12:25:39 +02:00
This seems to work quite well including hotplugging of devices, changes to default sinks/sources etc. So far I only provided percentage values for sink/source since they seem most useful. Defaults are set to DEFAULT_SINK/DEFAULT_SOURCE which means it will follow whatever defaults are at the moment (instead of being fixed to a given device). One thing currently left unhandled is when pulseaudio/pipewire gets disconnected/restarted. In such a case we mark the sink/source as offline but there is no reconnect attempted later. Added man page + more complex example which includes mixed usage of both input and output.
13 lines
580 B
Meson
13 lines
580 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')
|