Skip to content

Instantly share code, notes, and snippets.

@glabra
Created March 22, 2015 05:57
Show Gist options
  • Save glabra/411dea722422ffbcb70a to your computer and use it in GitHub Desktop.
Save glabra/411dea722422ffbcb70a to your computer and use it in GitHub Desktop.
systemdで起動音
[Unit]
Description=Play shutdown sound via ALSA
ConditionPathExists=/usr/local/share/sounds/Shutdown.wav
Before=shutdown.target alsa-store.service
DefaultDependencies=no
[Service]
ExecStart=/usr/bin/aplay /usr/local/share/sounds/Shutdown.wav
[Install]
WantedBy=shutdown.target
[Unit]
Description=Play startup sound via ALSA
ConditionPathExists=/usr/local/share/sounds/Startup.wav
After=getty@tty1.service
[Service]
ExecStart=/usr/bin/aplay /usr/local/share/sounds/Startup.wav
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment