summaryrefslogtreecommitdiffstats
path: root/extra/pure-alsa-system
diff options
context:
space:
mode:
Diffstat (limited to 'extra/pure-alsa-system')
-rwxr-xr-xextra/pure-alsa-system/README37
-rwxr-xr-xextra/pure-alsa-system/revert-to-using-pulseaudio.sh17
2 files changed, 0 insertions, 54 deletions
diff --git a/extra/pure-alsa-system/README b/extra/pure-alsa-system/README
deleted file mode 100755
index dbd7618d7..000000000
--- a/extra/pure-alsa-system/README
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/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:
-
-echo "Moving /etc/asound.conf.new to /etc/asound.conf:"
-mv --verbose /etc/asound.conf.new /etc/asound.conf
-
-# Make rc.alsa executable so that volume is properly restored:
-echo "Making /etc/rc.d/rc.alsa executable."
-chmod 755 /etc/rc.d/rc.alsa
-
-# 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! :-)
diff --git a/extra/pure-alsa-system/revert-to-using-pulseaudio.sh b/extra/pure-alsa-system/revert-to-using-pulseaudio.sh
deleted file mode 100755
index a3e853ce2..000000000
--- a/extra/pure-alsa-system/revert-to-using-pulseaudio.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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 qt5 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."