diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-05-13 15:02:33 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-05-13 15:02:33 +0000 |
commit | 5cb4d8f0463c688eec1644ce05f6c6ca326a8574 (patch) | |
tree | eb3450091fce9fb7bc3719b96524913f03dda4ef /perl-install/harddrake | |
parent | a182f456402796860442dc32c9b0d8ea5ae00464 (diff) | |
download | drakx-5cb4d8f0463c688eec1644ce05f6c6ca326a8574.tar drakx-5cb4d8f0463c688eec1644ce05f6c6ca326a8574.tar.gz drakx-5cb4d8f0463c688eec1644ce05f6c6ca326a8574.tar.bz2 drakx-5cb4d8f0463c688eec1644ce05f6c6ca326a8574.tar.xz drakx-5cb4d8f0463c688eec1644ce05f6c6ca326a8574.zip |
(switch) advise to log out if PA is enabled/disabled
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r-- | perl-install/harddrake/sound.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index 63d2def3c..885e48d1f 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -323,6 +323,8 @@ sub switch { my $is_5_1_in_pulseaudio_enabled = is_5_1_in_pulseaudio_enabled(); my $is_user_switching = is_user_switching_enabled(); + my $old_value = $is_pulseaudio_enabled; + my $write_config = sub { set_pulseaudio($is_pulseaudio_enabled); set_pulseaudio_routing($is_pulseaudio_enabled && $is_pulseaudio_routing_enabled); @@ -332,6 +334,10 @@ sub switch { $in->do_pkgs->ensure_is_installed('alsa-plugins-pulseaudio', '/usr/' . (arch() =~ /x86_64/ ? 'lib64' : 'lib') .'/alsa-lib/libasound_module_pcm_pulse.so'); } + if ($old_value ne $is_pulseaudio_enabled) { + require any; + any::ask_for_X_restart($in); + } }; my @common = ( |