Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Its common for me to press alt-f10 (In Gnu/linux) after emacs start up for maximizing window (emacs sense its actually a frame). Most of the times I do press thrice because I was too early to press first alt-f10 which makes it appear some garbage around minibuffer (emacs display bug?).

How can I automate this one.? (may be with Gnome settings or with elisp?)

btw I am using emacs24.(from bzr repo)

Okay.. Just to say.. its not the fullscreen I want which you would get by pressing f11.

share|improve this question
Why don't you set initial-frame-alist or the corresponding xrdb resources to the geometry you want instead? See stackoverflow.com/questions/92971/… for code and pointers. – tripleee Oct 14 '11 at 16:23
I want to have full screen, the accepted answer meets my need. thanks for the link BTW. – kindahero Oct 14 '11 at 16:55

2 Answers

up vote 8 down vote accepted
(defun fullscreen (&optional f)
       (interactive)
       (x-send-client-message nil 0 nil "_NET_WM_STATE" 32
               '(2 "_NET_WM_STATE_MAXIMIZED_VERT" 0))
       (x-send-client-message nil 0 nil "_NET_WM_STATE" 32
               '(2 "_NET_WM_STATE_MAXIMIZED_HORZ" 0)))

might work. (Taken from here.)

share|improve this answer
1  
wow that was quick and worked too.. – kindahero Oct 14 '11 at 6:49
This code does not work under Windows/Mac OS X. Look to my solution... – gavenkoa Oct 14 '11 at 9:30
@gavenkoa Yeah, correct. But OP mentioned Gnu/Linux. – phimuemue Oct 14 '11 at 19:44
@phimuemue What strange is that kindhaero ask not the fullscreen so I put another solution which can be modified to such use... – gavenkoa Oct 14 '11 at 20:13
;; Next code work with Emacs 21.4, 22.3, 23.1.
(when window-system
  (let (
        (px (display-pixel-width))
        (py (display-pixel-height))
        (fx (frame-char-width))
        (fy (frame-char-height))
        tx ty
        )
    ;; Next formulas discovered empiric on Windows host with default font.
    (setq tx (- (/ px fx) 7))
    (setq ty (- (/ py fy) 4))
    (setq initial-frame-alist '((top . 2) (left . 2)))
    (add-to-list 'initial-frame-alist (cons 'width tx))
    (add-to-list 'initial-frame-alist (cons 'height ty))
    ) )

This code preserv some place for task bar on the bottom under Windows/Gnome/KDE

But instead of asking try read: http://www.emacswiki.org/emacs/FullScreen

share|improve this answer
thanks.. did n't worked this one. yes I should have gone to the emacswiki first. its just I have been reading a lot on SO lately. – kindahero Oct 14 '11 at 16:47
I forget add that this code work only on Emacs loading so you need place it to .emacs file... Hope this help... – gavenkoa Oct 14 '11 at 19:33
yes. I understood that.. but it seems its not that I wanted. since I use monitors with different resolutions, I wanted to get is maximization of window rather than specific size. – kindahero Oct 14 '11 at 20:28
@kindahero. My solution is adaptive rather than specific size )) – gavenkoa Oct 15 '11 at 18:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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