Remove xresources completely

This commit is contained in:
Alexander Bantyev 2021-06-15 01:13:10 +03:00
parent b28caa9f4e
commit f2dcbd22b6
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5
2 changed files with 0 additions and 57 deletions

View File

@ -174,19 +174,6 @@
(auto-fill-mode) (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@")) (add-to-list 'default-frame-alist '(font . "@font@"))
(set-face-attribute 'default nil :font "@font@") (set-face-attribute 'default nil :font "@font@")

View File

@ -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;
};
};
}