4

I am attempting to embed a gnome-terminal on my desktop using devilspie.

Adding a devilspie.desktop file in the ~/.config/autostart directory does nothing. It does not execute on login. However, gnome-terminal does.

Alex C
  • 173
  • 2
  • 5

2 Answers2

2

Put scriptname.desktop containing this:

[Desktop Entry]
Name="devilspie"
GenericName="devilspie"
Comment="is this necesery?"
Exec=/usr/bin/devilspie
Terminal=false
Type=Application
X-Gnome-Autostart=true

here:

/home/user/.config/autostart

user117003
  • 21
  • 2
0

4 years has passed, and I don't know whether you have solved it.
Today I make devilspie autostart successfully.

  1. Add a .desktop file
  2. chmod +x this file

Did you do the second step?

My config is as follows(OS is archlinux):

[Desktop Entry]
Name=devilspie
Exec=devilspie
Terminal=false
Type=Application
Hidden=false
X-Gnome-Autostart=true
Azuki
  • 1