diff options
author | Ben Sima <ben@bsima.me> | 2019-04-11 09:28:18 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-04-11 09:28:18 -0700 |
commit | df6b691494736f0fc12f632bd9ad555f56a576de (patch) | |
tree | 5550f457035867a11f8e8c616cd3f7db4d189693 /linux.nix | |
parent | 217985b3e9a9d424826d8ab470bd85403cbdac1d (diff) |
font and color improvements
Diffstat (limited to 'linux.nix')
-rw-r--r-- | linux.nix | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -9,10 +9,12 @@ let "dark" = { background = "#292b2e"; foreground = "#b2b2b2"; + highlight = "#5d4d7a"; }; "light" = { background = "#fbf8ef"; foreground = "#655370"; + highlight = "#67b11d"; }; }; in @@ -23,8 +25,8 @@ in xresources = { properties = { - "XTerm*font" = "-*-terminus-medium-r-normal--18-*-*-*-*-*-iso10646-1"; - "XTerm*faceName" = "Terminus"; + "XTerm*font" = "-*-FiraMono-medium-r-normal--18-*-*-*-*-*-iso10646-1"; + "XTerm*faceName" = "FireMono"; "XTerm*faceSize" = "10"; "XTerm*termName" = "xterm-256color"; "XTerm*metaSendsEscape" = true; |