I want to add a string to the startup screen. I found this question and customized the fancy-startup-text
variable, like this
(add-to-list 'fancy-startup-text '("\nYou are running a customized Emacs configuration. See " :link
("here"
#[257 "\300\301!\207"
[browse-url-default-browser "http://github.com/izahn/dotemacs/"]
3 "\n\n(fn BUTTON)"]
"Open the README file")
"\nfor information about these customizations.\n"))
That worked on my desktop computer, but when I tried on my laptop (with a small screen) I find a different startup screen, without the Emacs logo at the top, and without my additional string. I found a discussion on the emacs mailing list discussing how different startup screens are shown depending on the size of the initial frame (unfortunately I cannot locate this now), so I think this is expected. But what I cannot figure out is how to customize the text for the simple startup screen (without the logo) that is shown when the initial frame is small. I tried customizing fancy-about-text
, i.e.
(add-to-list 'fancy-about-text '("\nYou are running a customized Emacs configuration. See " :link
("here"
#[257 "\300\301!\207"
[browse-url-default-browser "http://github.com/izahn/dotemacs/"]
3 "\n\n(fn BUTTON)"]
"Open the README file")
"\nfor information about these customizations.\n"))
but that did not work.