R. Mattes writes:
Hello list,
i have some questions about slime's typeout frames. First, is there a way to configure the appearance of the typeout frames short of editing 'slime.el'? I'd like to customize the background color as well as disable the statusbar. Maybe there's a chance to defcustom slime-typeout-frame-properties instead of devar-ing it?
I use something like this:
(setq slime-typeout-frame-properties '((width . 40) (height . 10) (minibuffer . nil) (menu-bar-lines . nil) (name . "SLIME Typeout") (background-color . "midnightblue") (auto-raise . t) (top . 0) (right . 0) (border-color . "white") ))
cheers, --ap