Based on this question: How to set emacsclient background as Emacs background?
I only need a background for frames, not a terminal, not a console.
This is how I try to add a fix for the console
(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")) ) )
But with this I do not get background on emacsclient (even for frames). Maybe the check doesn't even run in emacsclient?
Basically, I don't want to add the emacsclient background to the terminal and console, but in frames.
linux emacs elisp emacsclient
Cynede
source share