diff options
author | Ben Sima <ben@bsima.me> | 2022-09-02 10:07:50 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-09-02 10:07:50 -0400 |
commit | f645808a1449a40d71e3cadd0b5b5bac164d5a7f (patch) | |
tree | bb1f9477c840ed41fc90e7a86cfb735d543d2ec0 /lib/common.nix | |
parent | a55d3efcaa9b8d2a30b40606dae3e06b37665369 (diff) |
lots of updates, idk
Diffstat (limited to 'lib/common.nix')
-rw-r--r-- | lib/common.nix | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/common.nix b/lib/common.nix index 3f15754..cdbbf6e 100644 --- a/lib/common.nix +++ b/lib/common.nix @@ -224,12 +224,19 @@ in ]; }; - urxvt = { + urxvt = let font = size: "xft:Fira Mono:size=${toString size}:ant"; in { enable = true; fonts = [ - "xft:Fira Mono:size=8:ant" - "xfg:Noto Emoji" + (font 6) + "xft:Noto Emoji" ]; + keybindings = { + # why don't any of these work? + "Shift-Control-C" = "eval:selection_to_clipboard"; + "Shift-Control-V" = "eval:paste_clipboard"; + "Shift-Control-+" = "command:\033]710;${font 12}\007\033]711;${font 12}\007"; + "Shift-Control--" = "command:\033]710;${font 8}\007\033]711;${font 8}\007"; + }; iso14755 = true; # unicode chars #transparent = true; #shading = 10; |