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

View file

@ -32,6 +32,7 @@
./neovim.nix
./npm.nix
./rofi.nix
# ./urxvt.nix
./zsh.nix
./dunst.nix

View file

@ -5,7 +5,7 @@
blur = true;
blurExclude = [
"class_g != 'Alacritty' && class_g != 'Polybar'"
"class_g != 'Alacritty' && class_g != 'Polybar' && class_g != 'URxvt'"
];
fade = true;
fadeDelta = 5;

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 = "";
};
};
}