12

Previously in Karmic, we created a logout script that does some work in the background on backing up a users home directory, this script was put in the /etc/GDM/PostSession directory.

I can't figure out where to put a script that I want to run during a logout in LightDM.

I've searched and have found many people who are looking for this answer, so any help would be greatly appreciated.

kiri
  • 28,986

3 Answers3

10

At least since Ubuntu 12.04 there is now an option session-cleanup-script which can be added to the [SeatDefaults] section of /etc/lightdm/lightdm.conf. /usr/share/doc/lightdm/lightdm.conf.gz is the documentation:

# session-cleanup-script = Script to run when quitting a user session (runs as root)

Do not forget chmod +x yourscript to give your script executing permission.

After changing a value in lightdm.conf it takes only effect after lightdm is restarted. You can either reboot or login to a console (Ctrl+Alt+F1) and run sudo restart lightdm.

(Thanks to Krytarik who posted this answer in http://ubuntuforums.org/showthread.php?t=1918649)

elmicha
  • 9,960
4

Add

session-setup-script = Script to run when starting a user session (runs as root)

session-cleanup-script = Script to run when quitting a user session (runs as root)

in /etc/lightdm/lightdm.conf file.

Sources:

Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407
user55822
  • 3,245
2

This is not possible. I think you need to follow bug in launcpad

Guria
  • 105