diff options
Diffstat (limited to 'x')
-rw-r--r-- | x/rxvt.nix | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -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; |