diff options
-rw-r--r-- | smart-documents.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smart-documents.org b/smart-documents.org index 609383b..ccbf4ee 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -340,14 +340,14 @@ We set the dimensions of the initial frame: #+BEGIN_SRC emacs-lisp :tangle yes (add-to-list 'initial-frame-alist '(width . 70)) - (add-to-list 'initial-frame-alist '(height . 40)) + (add-to-list 'initial-frame-alist '(height . 30)) #+END_SRC We also set the dimensions of subsequent frames: #+BEGIN_SRC emacs-lisp :tangle yes (add-to-list 'default-frame-alist '(width . 70)) - (add-to-list 'default-frame-alist '(height . 40)) + (add-to-list 'default-frame-alist '(height . 30)) #+END_SRC Transparency. |