Fedora 20 Systemd slideshow on startup

0

How do I use systemd to automatically run a slideshow automatically at startup? I am using Gnome on Fedora 20. eog works well, but I cannot get it to successfully run at startup.

user3456757

Posted 2014-07-23T22:49:26.560

Reputation: 3

Answers

0

You do not use systemd for this. See my earlier answer on why. eog is not a system service; it is a desktop program that runs inside the login session, and the correct method to start it is by creating a *.desktop file in the ~/.config/autostart directory:

[Desktop Entry]
Name=Slide show
Type=Application
Exec=eog --slide-show ~/Pictures

user1686

Posted 2014-07-23T22:49:26.560

Reputation: 283 655