volume: use internal/alsa instead of internal/volume

This commit is contained in:
NBonaparte 2018-01-20 12:48:02 -08:00 committed by Patrick Ziegler
parent 1d9dd719bc
commit 818bcbd0b5
2 changed files with 3 additions and 1 deletions

View File

@ -91,7 +91,7 @@ A compiler with C++14 support ([clang-3.4+](http://llvm.org/releases/download.ht
- xcb-util-cursor *required for the `cursor-click` and `cursor-scroll` settings*
**Optional dependencies for extended module support:**
- alsa-lib *required by `internal/volume`*
- alsa-lib *required by `internal/alsa`*
- libpulse *required by `internal/pulseaudio`*
- jsoncpp *required by `internal/i3`*
- libmpdclient *required by `internal/mpd`*

View File

@ -76,6 +76,8 @@ namespace {
} else if (name == "internal/mpd") {
return new mpd_module(bar, move(module_name));
} else if (name == "internal/volume") {
throw application_error("internal/volume is deprecated, use internal/alsa instead");
} else if (name == "internal/alsa") {
return new volume_module(bar, move(module_name));
} else if (name == "internal/pulseaudio") {
return new pulseaudio_module(bar, move(module_name));