O serviço alsa-restore não está funcionando

0

Estou tendo problemas com som no meu sistema Arch Linux. Quando eu reinicio, minhas configurações de som estão incorretas. Após o login, se eu correr

sudo alsactl restore

então está tudo bem. Fiquei com a impressão de que o serviço alsa-restore systemd deveria cuidar disso

$ cat /usr/lib/systemd/system/alsa-restore.service
#
# Note that two different ALSA card state management schemes exist and they
# can be switched using a file exist check - /etc/alsa/state-daemon.conf .
#

[Unit]
Description=Save/Restore Sound Card State
ConditionPathExists=!/etc/alsa/state-daemon.conf
ConditionPathExistsGlob=/dev/snd/control*

[Service]
Type=oneshot
RemainAfterExit=true
ExecStart=-/usr/bin/alsactl restore
ExecStop=-/usr/bin/alsactl store

O serviço parece estar ativo e em execução

$ sudo systemctl status alsa-restore
● alsa-restore.service - Save/Restore Sound Card State
   Loaded: loaded (/usr/lib/systemd/system/alsa-restore.service; static; vendor preset: disabl
   Active: active (exited) since Thu 2017-11-30 11:55:58 EST; 5min ago
  Process: 533 ExecStart=/usr/bin/alsactl restore (code=exited, status=0/SUCCESS)
 Main PID: 533 (code=exited, status=0/SUCCESS)
    Tasks: 0 (limit: 4915)
   CGroup: /system.slice/alsa-restore.service

Nov 30 11:55:58 cochlea systemd[1]: Starting Save/Restore Sound Card State...
Nov 30 11:55:58 cochlea systemd[1]: Started Save/Restore Sound Card State.

O que estou perdendo? Como faço para que minha configuração de som seja restaurada no login?

    
por StrongBad 30.11.2017 / 18:07

0 respostas