add (unused) urxvt

it seemed to run at like a super low framerate so paging through
things felt pretty awful
This commit is contained in:
LavaDesu 2021-05-30 22:09:19 +07:00
parent 7edc0fa1e7
commit 5be0893c3a
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 25 additions and 1 deletions

23
users/rin/urxvt.nix Normal file
View file

@ -0,0 +1,23 @@
{ config, ... }: {
programs.urxvt = {
enable = true;
fonts = [ "xft:Cascadia Code:size=12.4" ];
scroll.bar.enable = false;
extraConfig = {
background = "[65]#000000";
depth = 32;
cursorBlink = true;
letterSpace = 0;
lineSpace = 0;
saveline = 4096;
urlLauncher = "firefox";
underlineURLs = true;
urlButton = 1;
perl-ext = "";
perl-ext-common = "";
};
};
}