This commit is contained in:
Your Name
2026-05-10 01:05:57 +02:00
commit f3cb5a6e26
19 changed files with 2741 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
;;; ../../lyfi/configs/apps/doom/custom/ui.el -*- lexical-binding: t; -*-
(defun my/apply-theme (frame)
"Apply a specific theme based on whether the FRAME is graphic or TUI."
(select-frame frame)
(if (display-graphic-p frame)
(progn
(mapc #'disable-theme custom-enabled-themes)
(load-theme 'cutarv32 t)) ;; Your GUI theme
(progn
(mapc #'disable-theme custom-enabled-themes)
(load-theme 'cutarv32_dark t)))) ;; Your TUI theme