diff --git a/modules/applications/emacs/init.el b/modules/applications/emacs/init.el index c232b74..200f665 100755 --- a/modules/applications/emacs/init.el +++ b/modules/applications/emacs/init.el @@ -174,19 +174,6 @@ (auto-fill-mode) -;; ------------------- -;; Theme -;; ------------------- -;; (use-package xresources-theme -;; :config -;; (load-theme 'xresources t) -;; (setq after-init-hook (load-theme 'xresources t)) -;; (add-hook 'after-make-frame-functions -;; (lambda (frame) -;; (with-selected-frame frame -;; (load-theme 'xresources t) -;; (set-frame-font "IBM Plex Mono 11" nil t))))) - (add-to-list 'default-frame-alist '(font . "@font@")) (set-face-attribute 'default nil :font "@font@") diff --git a/modules/workspace/xresources.nix b/modules/workspace/xresources.nix deleted file mode 100644 index e28ea5a..0000000 --- a/modules/workspace/xresources.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ config, lib, pkgs, ... }: -{ - home-manager.users.balsoft = { - xresources.properties = with pkgs.my-lib.thmHash; { - "*background" = base00; - "*foreground" = base07; - "*color0" = base00; - "*color1" = base08; - "*color2" = base0B; - "*color3" = base0A; - "*color4" = base0D; - "*color5" = base0E; - "*color6" = base0C; - "*color7" = base07; - "*color8" = base03; - "*color9" = base09; - "*color10" = base01; - "*color11" = base02; - "*color12" = base04; - "*color13" = base07; - "*color14" = base0F; - "*color15" = base07; - - "emacs.font" = "${config.themes.fonts.mono.family} ${toString config.themes.fonts.mono.size}"; - - # "emacs.color0" = dark; - # "emacs.color1" = green; - # "emacs.color2" = alt; - # "emacs.color3" = yellow; - # "emacs.color4" = gray; - # "emacs.color5" = purple; - # "emacs.color6" = cyan; - # "emacs.color7" = gray; - # "emacs.color8" = alt; - # "emacs.color9" = green; - # "emacs.color10" = green; - # "emacs.color11" = yellow; - # "emacs.color12" = green; - # "emacs.color13" = purple; - # "emacs.color14" = cyan; - # "emacs.color15" = fg; - }; - }; -}