swaylock-effects patch, moved to kitty + fira code

This commit is contained in:
kat witch 2021-08-30 00:41:57 +01:00
parent d10f9d6292
commit 3247d303ed
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
15 changed files with 67 additions and 21 deletions

View file

@ -27,7 +27,11 @@ let cfg = config.kw.theme; in
font = {
name = mkOption {
type = types.str;
default = "Cozette";
default = "Fira Code";
};
termName = mkOption {
type = types.str;
default = cfg.font.name;
};
size = mkOption {
type = types.float;
@ -41,6 +45,7 @@ let cfg = config.kw.theme; in
variables = mkOption {
type = types.attrsOf types.str;
default = (cfg.base16 // cfg.base16t // {
term_font = cfg.font.termName;
font = cfg.font.name;
font_size = cfg.font.size_css;
});