15 lines
368 B
SYSTEMD
15 lines
368 B
SYSTEMD
|
[Unit]
|
||
|
Description=Restore sound after resume
|
||
|
After=suspend.target
|
||
|
After=tmp.mount
|
||
|
ConditionPathExists=/tmp/.before-suspend-asound.state
|
||
|
ConditionFileIsExecutable=/usr/sbin/alsactl
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
ExecStart=/usr/sbin/alsactl -f /tmp/.before-suspend-asound.state restore
|
||
|
ExecStart=/bin/rm -f /tmp/.before-suspend-asound.state
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=suspend.target
|