diff options
author | Karel Kočí <cynerd@email.cz> | 2022-11-16 10:00:19 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-11-16 10:00:19 +0100 |
commit | 8f68b86ef33a42c26a7f23adcf36b54d60d4fd98 (patch) | |
tree | 483f75f58b24227105b21cfdd989302b922bbc25 /system/etc/pulse/system.pa | |
parent | eb3d4c9a3f469d80d5e6c9ae241caef17c1568a4 (diff) | |
download | myconfigs-8f68b86ef33a42c26a7f23adcf36b54d60d4fd98.tar.gz myconfigs-8f68b86ef33a42c26a7f23adcf36b54d60d4fd98.tar.bz2 myconfigs-8f68b86ef33a42c26a7f23adcf36b54d60d4fd98.zip |
system: remove as I am not using NixOS that provides this more easily
Diffstat (limited to 'system/etc/pulse/system.pa')
-rw-r--r-- | system/etc/pulse/system.pa | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/system/etc/pulse/system.pa b/system/etc/pulse/system.pa deleted file mode 100644 index 38d1245..0000000 --- a/system/etc/pulse/system.pa +++ /dev/null @@ -1,103 +0,0 @@ -#!/usr/bin/pulseaudio -nF -# -# This file is part of PulseAudio. -# -# PulseAudio is free software; you can redistribute it and/or modify it -# under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# PulseAudio is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>. - -# This startup script is used only if PulseAudio is started in system -# mode. - -.fail - -### Automatically restore the volume of streams and devices -load-module module-device-restore -load-module module-stream-restore -load-module module-card-restore - -### Automatically augment property information from .desktop files -### stored in /usr/share/application -load-module module-augment-properties - -### Should be after module-*-restore but before module-*-detect -load-module module-switch-on-port-available - -### Load audio drivers statically -### (it's probably better to not load these drivers manually, but instead -### use module-udev-detect -- see below -- for doing this automatically) -#load-module module-alsa-sink -#load-module module-alsa-source device=hw:1,0 -#load-module module-null-sink -#load-module module-pipe-sink - -### Automatically load driver modules depending on the hardware available -.ifexists module-udev-detect.so -load-module module-udev-detect -.else -### Use the static hardware detection module (for systems that lack udev/hal support) -load-module module-detect -.endif - -### Automatically connect sink and source if JACK server is present -.ifexists module-jackdbus-detect.so -.nofail -load-module module-jackdbus-detect channels=2 -.fail -.endif - -### Automatically load driver modules for Bluetooth hardware -load-module module-bluetooth-policy -load-module module-bluetooth-discover - -### Load several protocols -.ifexists module-esound-protocol-unix.so -load-module module-esound-protocol-unix -.endif -load-module module-native-protocol-unix - - -### Automatically restore the default sink/source when changed by the user -### during runtime -### NOTE: This should be loaded as early as possible so that subsequent modules -### that look up the default sink/source get the right value -load-module module-default-device-restore - -### Automatically move streams to the default sink if the sink they are -### connected to dies, similar for sources -load-module module-rescue-streams - -### Make sure we always have a sink around, even if it is a null sink. -load-module module-always-sink - -### Honour intended role device property -load-module module-intended-roles - -### Automatically suspend sinks/sources that become idle for too long -load-module module-suspend-on-idle - -### Enable positioned event sounds -load-module module-position-event-sounds - -### Cork music/video streams when a phone stream is active -load-module module-role-cork - -### Modules to allow autoloading of filters (such as echo cancellation) -### on demand. module-filter-heuristics tries to determine what filters -### make sense, and module-filter-apply does the heavy-lifting of -### loading modules and rerouting streams. -load-module module-filter-heuristics -load-module module-filter-apply - -### Make some devices default -#set-default-sink output -#set-default-source input |