config: move loading of all audio support modules in 90-enable-audio-all

This file is meant to provide the equivalent of pipewire-media-session's
'with-pulseaudio' flag file
This commit is contained in:
George Kiagiadakis
2021-02-15 20:17:15 +02:00
parent be78fbbc7d
commit f4b899c9e3
2 changed files with 10 additions and 12 deletions

View File

@@ -63,15 +63,4 @@ function enable_access()
load_access("portal")
end
function enable_audio()
-- Enables functionality to save and restore default device profiles
load_module("default-profile")
-- Enables saving and restoring certain metadata such as default endpoints
load_module("default-metadata")
-- Implements storing metadata about objects in RAM
load_module("metadata")
end
enable_access()

View File

@@ -1,3 +1,12 @@
enable_audio()
-- Enable local & bluetooth audio devices
alsa_monitor.enable()
bluez_monitor.enable()
-- Enables functionality to save and restore default device profiles
load_module("default-profile")
-- Enables saving and restoring certain metadata such as default endpoints
load_module("default-metadata")
-- Implements storing metadata about objects in RAM
load_module("metadata")