mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
3f536b705b
a/kernel-generic-4.14.74-x86_64-1.txz: Upgraded. a/kernel-huge-4.14.74-x86_64-1.txz: Upgraded. a/kernel-modules-4.14.74-x86_64-1.txz: Upgraded. ap/cups-filters-1.21.3-x86_64-1.txz: Upgraded. d/cmake-3.12.3-x86_64-1.txz: Upgraded. d/kernel-headers-4.14.74-x86-1.txz: Upgraded. k/kernel-source-4.14.74-noarch-1.txz: Upgraded. l/gst-plugins-base-1.14.4-x86_64-1.txz: Upgraded. l/gst-plugins-good-1.14.4-x86_64-1.txz: Upgraded. l/gst-plugins-libav-1.14.4-x86_64-1.txz: Upgraded. l/gstreamer-1.14.4-x86_64-1.txz: Upgraded. n/dovecot-2.3.3-x86_64-1.txz: Upgraded. Thanks to teoberi for the link to the glibc-2.28 crypt() patch. extra/pure-alsa-system/gst-plugins-good-1.14.4-x86_64-1_alsa.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
32 lines
1,009 B
Bash
Executable file
32 lines
1,009 B
Bash
Executable file
#!/bin/sh
|
|
# Don't like PulseAudio?
|
|
# Fine, we're not going to force you to use it.
|
|
#
|
|
# To eliminate PulseAudio from your system and switch to using pure ALSA,
|
|
# first remove the following packages:
|
|
|
|
removepkg --terse pulseaudio pamixer pavucontrol xfce4-pulseaudio-plugin
|
|
|
|
# Next, install the packages in this directory:
|
|
|
|
upgradepkg --install-new --terse *.txz
|
|
|
|
# Move the new asound.conf into place:
|
|
|
|
mv /etc/asound.conf.new /etc/asound.conf
|
|
|
|
# You may need to reboot at this point to make sure there are no running
|
|
# PulseAudio processes, or any binaries still mapping the PulseAudio libraries.
|
|
# If you use Xfce, you'll probably want to add the xfce4-mixer plugin (named
|
|
# "audio mixer" in the menu) to the panel.
|
|
#
|
|
# If you run this README file as a script, it will do all of these things for
|
|
# you except for adding the audio mixer to the Xfce panel:
|
|
#
|
|
# sh README
|
|
#
|
|
# Caveats:
|
|
# Bluetooth audio will no longer work.
|
|
# Third party packages that link to PulseAudio will need to be rebuilt.
|
|
#
|
|
# Enjoy! :-)
|