aboutsummaryrefslogtreecommitdiff
path: root/x/rxvt.nix
diff options
context:
space:
mode:
Diffstat (limited to 'x/rxvt.nix')
-rw-r--r--x/rxvt.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/x/rxvt.nix b/x/rxvt.nix
index a7970a6..b5401ab 100644
--- a/x/rxvt.nix
+++ b/x/rxvt.nix
@@ -1,6 +1,7 @@
1{ config 1{ config
2, pkgs 2, pkgs
3, theme 3, theme
4, font
4, ... 5, ...
5}: 6}:
6 7
@@ -30,12 +31,12 @@ with theme;
30 "*color15" = base07; 31 "*color15" = base07;
31 32
32 "*.cursorBlink" = "on"; 33 "*.cursorBlink" = "on";
33 "URxvt.font" = "xft:Nerd Input:size=11:style=Medium"; 34 "URxvt.font" = "xft:${font.name}:size=11:style=Medium";
34 "URxvt.italicFont" = "xft:Nerd Input:size=11:style=Medium"; 35 "URxvt.italicFont" = "xft:${font.name}:size=11:style=Medium";
35 "URxvt.boldFont" = "xft:Nerd Input:size=11:style=Medium"; 36 "URxvt.boldFont" = "xft:${font.name}:size=11:style=Medium";
36 "*font" = "Fira Code:size=11:style=Regular"; 37 "*font" = "${font.name}:size=11:style=Regular";
37 "*italicFont" = "Fira Code:size=11:style=Italic"; 38 "*italicFont" = "${font.name}:size=11:style=Italic";
38 "*boldFont" = "Fira Code:size=11:style=Bold"; 39 "*boldFont" = "${font.name}:size=11:style=Bold";
39 40
40 "URxvt.lineSpace" = 0; 41 "URxvt.lineSpace" = 0;
41 "URxvt.letterSpace" = 0; 42 "URxvt.letterSpace" = 0;