Salut. L'objectif est d'afficher un joli plymouth lors du passage en hibernation comme à l'extinction de la machine.
Le script suivant a été copié vers /etc/systemd/system/plymouth-hibernate.service
[Unit]
Description=Show Plymouth Hibernate Screen
After=getty@tty1.service display-manager.service plymouth-start.service
Before=systemd-hibernate.service
DefaultDependencies=no
ConditionKernelCommandLine=!plymouth.enable=0
ConditionKernelCommandLine=!nosplash
[Service]
ExecStart=/sbin/plymouthd --mode=shutdown --attach-to-session
ExecStartPost=-/bin/plymouth show-splash
Type=forking
Le précédent script est inspiré du script /lib/systemd/system/plymouth-poweroff.service
[Unit]
Description=Show Plymouth Power Off Screen
After=getty@tty1.service display-manager.service plymouth-start.service
Before=systemd-poweroff.service
DefaultDependencies=no
ConditionKernelCommandLine=!plymouth.enable=0
ConditionKernelCommandLine=!nosplash
[Service]
ExecStart=/sbin/plymouthd --mode=shutdown --attach-to-session
ExecStartPost=-/bin/plymouth show-splash
Type=forking
Avec cette modification il n'y a toujours pas de plymouth. L'écran est noir ou figé lors du passage en hibernation (comme d'habitude).
Systemd est à la version 232, debian en 9.4, xfce en 4.12
Connaissez-vous une ressource internet sur laquel cogiter pour effectuer cela ?
Merci de m'avoir lu.