fe20c109fc
This wasn't actually getting run on boot because After=graphical.target created an ordering issue and systemd was disabling it. I saw this ordering issue in the journal after finding that pbsplash was still running in the background after the UI loaded, and confirmed it by running systemd-analyze.
11 lines
178 B
Desktop File
11 lines
178 B
Desktop File
[Unit]
|
|
Description=Stop pbsplash
|
|
Requisite=graphical.target
|
|
|
|
[Service]
|
|
ExecStart=-/usr/bin/killall pbsplash
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=graphical.target
|