I would like to run a script to rsync my home directory to another machine whenever I log out of Gnome. There is a way to hook into the Gnome logout process?
Tell me more
×
Unix & Linux Stack Exchange is a question and answer site for
users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.
|
The script /etc/gdm/PostSession/Default is run by root whenever someone quits his X session. You might add there something like
before the exit 0. Then create a file /home/myuser/logout.sh, make it executable and add your rsync call to it. |
|||
|
|
|
You can add the script to the I'm actually searching for a way to do this only with the Gnome session, since using |
|||
|
|