基于这个问题:如何将 emacsclient 背景设置为 Emacs 背景?
我只需要框架的背景,而不是终端和控制台。
这是我尝试为控制台添加修复的方式
(when (display-graphic-p)
(tool-bar-mode -1)
(scroll-bar-mode t)
(require 'nyan-mode)
(nyan-mode)
(nyan-start-animation)
(mouse-wheel-mode t)
(setq default-frame-alist
'((background-color . "#101416")
(foreground-color . "#f6f3e8"))
)
)
但是这样我就没有 emacsclient 的背景知识(即使是框架)。也许检查甚至没有在 emacsclient 中运行?
基本上我不想在终端和控制台中向 emacsclient 添加背景,而是在框架中。