help-emacs-windows
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [h-e-w] Emacs windows goes "under" the vertical taskbar when maximiz


From: Raymond Zeitler
Subject: Re: [h-e-w] Emacs windows goes "under" the vertical taskbar when maximized
Date: Fri, 3 Jan 2014 17:10:30 +0000

Hi Joon:

I use this to set frame parameters:

(setq initial-frame-alist '((top . 0) (left . 0)
                            (width . 135) (height . 67)
                            (cursor-type . bar)
                            (font . "-outline-Bitstream Vera Sans 
Mono-normal-r-normal-normal-12-90-96-96-c-70-iso8859-1")))

Perhaps it will inspire a solution.

- Ray

-----Original Message-----


Date: Fri, 3 Jan 2014 11:37:19 +0900
From: Joon Ro <address@hidden>
To: "address@hidden" <address@hidden>
Subject: Re: [h-e-w] Emacs windows goes "under" the vertical taskbar
        when    maximized
Message-ID:
        <address@hidden>
Content-Type: text/plain; charset="utf-8"

-snip-

But then, I found the culprit. I have the following in my ``.emacs``:

```lisp
(add-hook 'after-make-frame-functions
  (if window-system
    (progn
        (cond ((eq system-type 'gnu/linux)
                 ;(set-face-attribute 'default nil :font "Inconsolata-g-10")
                 (setq initial-frame-alist '(
                   (font . "Monospace-11")
                 ))
                 (setq default-frame-alist '(
                   (font . "Monospace-11")
                 ))
                 (set-fontset-font "fontset-default" 'korean-ksc5601
"-unknown-NanumGothicCoding-normal-normal-normal-*-*-*-*-*-d-0-iso10646-1"))
              ((eq system-type 'windows-nt)
               (progn
                 (set-face-attribute 'default nil :font "Consolas 13")
                 ))
        )
        )))
```

And when I take this out, maximization works as expected. How should I
change this so I can have default font set without?

Best,
Joon




reply via email to

[Prev in Thread] Current Thread [Next in Thread]