* Question Regarding Cursor Blink Color For Themes In Emacs
@ 2022-06-15 16:02 Samuel Banya
2022-06-15 16:53 ` Emanuel Berg
0 siblings, 1 reply; 2+ messages in thread
From: Samuel Banya @ 2022-06-15 16:02 UTC (permalink / raw)
To: Emanuel Berg
[-- Attachment #1: Type: text/plain, Size: 684 bytes --]
Hello there,
I've been trying to develop my own theme in Emacs which has been good so far:
However, I do have one weird thing I've noticed, the cursor while in 'blink-mode' produces a background which is fine, but defaults to black text for its foreground color, which makes it very hard to use in modes like Org Mode, etc.
Where is this controlled? Is this per theme, or is this on a config level to be able to control this?
I attached a related screenshot of this behavior.
Here's the related theme I created:
* https://github.com/SamuelBanya/morrowind-emacs-theme
My related Emacs config:
* https://github.com/SamuelBanya/SamsEmacs/blob/main/configuration.org
Thanks,
Sam
[-- Attachment #2: Screen Shot 2022-06-15 at 11.56.34 AM.png --]
[-- Type: image/png, Size: 22936 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Question Regarding Cursor Blink Color For Themes In Emacs
2022-06-15 16:02 Question Regarding Cursor Blink Color For Themes In Emacs Samuel Banya
@ 2022-06-15 16:53 ` Emanuel Berg
0 siblings, 0 replies; 2+ messages in thread
From: Emanuel Berg @ 2022-06-15 16:53 UTC (permalink / raw)
To: help-gnu-emacs
Samuel Banya wrote:
> I've been trying to develop my own theme in Emacs which has
> been good so far
Hm, okay, how does that work? See my face file below, is that
a theme? How does your work?
> However, I do have one weird thing I've noticed, the cursor
> while in 'blink-mode' produces a background which is fine,
> but defaults to black text for its foreground color, which
> makes it very hard to use in modes like Org Mode, etc.
Don't know, have that disabled below/before Emacs
(blink-cursor-mode is actually t! sacrilege). No,
# cursor blink
cursor_blink=/sys/class/graphics/fbcon/cursor_blink
sudo chmod a+w $cursor_blink
echo 0 > $cursor_blink
but there _is_ a `cursor' face ...
Do you use Emacs with -nw in xterm in X?
xterm*cursorBlink: false
xterm*cursorcolor: #000000
In the words of the barrel racer: just try, and you will fly!
(defun set-all-faces (fg &optional bg weight)
(let ((backg (or bg "black"))
(wght (or weight 'normal))
(faces) )
(mapatoms (lambda (s)
(when (facep s)
(push (symbol-name s) faces) )))
(dolist (f faces)
(set-face-attribute (intern f) nil
:foreground fg)
:background backg
:weight wght
:italic nil) ))
;; (set-all-faces "red")
;; ^ eval here
https://dataswamp.org/~incal/emacs-init/face.el
https://dataswamp.org/~incal/conf/.xinitrc
https://dataswamp.org/~incal/conf/.Xresources
--
underground experts united
https://dataswamp.org/~incal
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-06-15 16:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-15 16:02 Question Regarding Cursor Blink Color For Themes In Emacs Samuel Banya
2022-06-15 16:53 ` Emanuel Berg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).