mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
b80b3b22eb
d/strace-20181024_43700247-x86_64-1.txz: Upgraded. l/alsa-plugins-1.1.7-x86_64-4.txz: Rebuilt. Applied upstream fix for double free. Thanks to Jean-Philippe Guillemin. n/httpd-2.4.37-x86_64-1.txz: Upgraded. n/mcabber-1.1.0-x86_64-1.txz: Upgraded. x/libepoxy-1.5.3-x86_64-1.txz: Upgraded. xap/pan-0.145-x86_64-1.txz: Upgraded. extra/pure-alsa-system/alsa-plugins-1.1.7-x86_64-4_alsa.txz: Rebuilt. Applied upstream fix for double free. Thanks to Jean-Philippe Guillemin.
17 lines
759 B
Bash
Executable file
17 lines
759 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# This script should be run in the current directory if you wish to uninstall
|
|
# the pure ALSA packages and switch back to using Pulseaudio.
|
|
|
|
removepkg --terse xfce4-mixer xfce4-volumed
|
|
for package in MPlayer alsa-lib alsa-plugins audacious-plugins ffmpeg \
|
|
fluidsynth gst-plugins-good gst-plugins-good0 kde-runtime kmix libao \
|
|
pulseaudio pamixer pavucontrol xfce4-pulseaudio-plugin \
|
|
libcanberra mpg123 phonon sox xine-lib ; do
|
|
upgradepkg --install-new --terse ../../slackware*/*/${package}-*.txz
|
|
done
|
|
echo "Moving /etc/asound.conf.new to /etc/asound.conf:"
|
|
mv --verbose /etc/asound.conf.new /etc/asound.conf
|
|
echo "Making /etc/rc.d/rc.alsa non-executable."
|
|
chmod 644 /etc/rc.d/rc.alsa
|
|
echo "System is converted back to using Pulseaudio."
|