Create an Emacs theme disco by randomly switching themes manually or automatically (from the Ef Themes collection): https://github.com/pprevos/disco-ef-themes
Emacs
A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!
Get Emacs
Rules
- Posts should be emacs related
- Be kind please
- Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.
Emacs Resources
Emacs Tutorials
- Beginner’s Guide to Emacs
- Absolute Beginner's Guide to Emacs
- How to Learn Emacs: A Hand-drawn One-pager for Beginners
Useful Emacs configuration files and distributions
Quick pain-saver tip
That´s cool. I was working something similar today. I call it Emacs Disco as it changes themes randomly every 10 seconds :) Try this:
(run-with-timer 0 60 'cycle-themes)
This post is an automated archive from a submission made on /r/emacs, powered by Fediverser software running on alien.top. Responses to this submission will not be seen by the original author until they claim ownership of their alien.top account. Please consider reaching out to them let them know about this post and help them migrate to Lemmy.
Lemmy users: you are still very much encouraged to participate in the discussion. There are still many other subscribers on !emacs@communick.news that can benefit from your contribution and join in the conversation.
Reddit users: you can also join the fediverse right away by getting by visiting https://portal.alien.top. If you are looking for a Reddit alternative made for and by an independent community, check out Fediverser.
-
doremi-custom-themes+
,doremi-color-themes+
(since 2004) -
icicle-custom-theme
,icicle-color-theme
(since 2006)
Cycling shows everything in your session using each theme, in turn.
doremi-custom-themes+
is an interactive Lisp function indoremi-cmd.el
.It is bound to
C-x t s
.
(doremi-custom-themes+ &optional FLIP)
Successively cycle among custom themes.
The themes used for cycling are those in option
doremi-custom-themes
.You can use
C-g
to quit and cancel changes made so far. Note, however, that some things might not be restored.C-g
can only disable any themes that you applied. It cannot restore other customizations that enabling a theme might have overruled. Note: Having a lot of frames present can slow down this command considerably.Option
doremi-custom-themes-accumulate-flag
determines whether cycling accumulates themes or disables all themes other than the current one. Note: A non-nil value (accumulating) can considerably slow down cycling.Option
doremi-themes-update-flag
determines whether the updated value ofdoremi-custom-themes
is saved. A prefix arg to this command flips the option value for the current invocation of the command.