On login to Ubuntu, I start an Emacs (version 23) daemon using Ubuntu's Startup programs. I then start Emacs clients whenever I need to edit something. When I logoff from Ubuntu, it says Emacs is still running, of course. I need to attach a script somewhere to tell Gnome to shutdown emacs when I logoff/shutdown.

1) What should the script look like? "kill-emacs" doesn't seem to work.

2) Where should I put this script? There's nothing in the startup programs (System->Sessions menu) panel that looks useful. I'd prefer something that works in the user's account, rather than hacking the PostSession script or something else with root access.

link|improve this question

2  
[While you wait for a real answer] Something like: emacsclient -e "(kill-emacs)" will do it. (You might want save-buffers-kill-emacs instead; that asks for confirmation first.) – ShreevatsaR Jul 22 '09 at 19:18
Does putting something that ShreevatsaR say in .bash_logout work? I forget. Does that only fire when a login shell is exited? – seth Jul 22 '09 at 21:35
It's rather a question for SU as it has nothing to do with programming. – Török Gábor Jul 23 '09 at 11:55
@seth: .bash_logout runs when the login shell is exited,, which is after Gnome shuts down @Torok: superuser is in private beta. until then, this is all I've got. – projectshave Jul 24 '09 at 14:42
feedback

7 Answers

up vote 9 down vote accepted

This linuxquestions.org page has a Python script that can be run during login that listens for the 'save yourself' event that Gnome emits during shutdown. You could modify that to do the 'emacsclient -e "(save-buffers-kill-emacs)"' thing.

(N.b. I haven't actually tested the script myself...)

link|improve this answer
I tested it under Ubuntu 11.10 and it works great! – climatewarrior Feb 13 at 0:58
feedback

ShreevatsaR is right, the answer is kill-emacs or save-buffers-kill-emacs, both of which are interactive, and so can be run from within Emacs with M-x save-buffers-kill-emacs. This is probably the best way to do it, since you will get to save modified files.

Another alternative is to make a shell file like this:

#!/bin/bash
emacsclient -e "(kill-emacs)"

Which you can run from wherever you like (menu icon, panel, etc).

link|improve this answer
I think what the questioner wants is something that can be put in a place that is automatically executed when GNOME is asked to log out. (So it's more of a Gnome/Ubuntu/X question than an Emacs question, actually.) – ShreevatsaR Jul 23 '09 at 3:55
feedback

Another addendum to ShreevatsaR: the python script works like a charm, but I'd suggest using

emacsclient -e '(let ((last-nonmenu-event nil))(save-buffers-kill-emacs))'
as command. Setting last-nonmenu-event to nil forces emacs into mouse-mode, so you get "nice" dialog boxes instead of prompts in the minibuffer.

Or even more fancy (somewhere in your emacs config):

(defun shutdown-emacs-server () (interactive)
  (when (not (eq window-system 'x))
    (message "Initializing x windows system.")
    (x-initialize-window-system)
    (when (not x-display-name) (setq x-display-name (getenv "DISPLAY")))
    (select-frame (make-frame-on-display display '((window-system . x))))
  )
  (let ((last-nonmenu-event nil)(window-system "x"))(save-buffers-kill-emacs)))

and then:

emacsclient -e '(shutdown-emacs-server)'
link|improve this answer
feedback

I think that using a script in /etc/init.d is a cleaner solution. Check here for more details http://www.emacswiki.org/emacs/EmacsAsDaemon

link|improve this answer
feedback

you can put emacsclient -e "(kill-emacs)" in GDM's PostSession directory or directly in the Default script:

/etc/gdm/PostSession/Default

see also GDM documentation.

link|improve this answer
Thanks, but my post says I didn't want to use PostSession because it requires (AFAIK) root access to modify it. If a user can add something in autostart, there should be a way to add something to "autoshutdown". – projectshave Jul 24 '09 at 14:50
feedback

Perhaps the most general solution would be to put a script in the system PostSession directory that runs every executable script in ~/.logout-d, or something similar. Then you can put whatever scripts you like in ~/.logout-d, and they will be run on logout.

The script might be as simple as run-parts ~/.logout.d.

Note: Untested, though I do use a startup script that does run-parts ~/.autostart.d, and that's been working fine forever.

Edit: Of course, it would be just as easy to modify the above python script to execute that same command, but I personally don't like the idea of loading a script for my entire session just to run commands on logout.

link|improve this answer
feedback

the answer from willert contains a small bug. it must look like


(defun shutdown-emacs-server () (interactive)
  (when (not (eq window-system 'x))
    (message "Initializing x windows system.")
    (x-initialize-window-system)
    (when (not x-display-name) (setq x-display-name (getenv "DISPLAY")))
    (select-frame (make-frame-on-display x-display-name '((window-system . x))))
  )
  (let ((last-nonmenu-event nil)(window-system "x"))(save-buffers-kill-emacs)))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.