replace evince with zathura
This commit is contained in:
parent
e05531c16c
commit
2ecf1a8024
3 changed files with 52 additions and 4 deletions
|
@ -19,6 +19,7 @@
|
|||
./tmux.nix
|
||||
./virt-manager.nix
|
||||
./yt-dlp.nix
|
||||
./zathura.nix
|
||||
./zsh.nix
|
||||
];
|
||||
|
||||
|
@ -27,7 +28,6 @@
|
|||
blueberry
|
||||
discord
|
||||
doctl
|
||||
evince
|
||||
flyctl
|
||||
gh
|
||||
git-crypt
|
||||
|
|
48
home/programs/zathura.nix
Normal file
48
home/programs/zathura.nix
Normal file
|
@ -0,0 +1,48 @@
|
|||
_: {
|
||||
programs.zathura = {
|
||||
enable = true;
|
||||
options = {
|
||||
window-title-basename = true;
|
||||
selection-clipboard = "clipboard";
|
||||
notification-error-bg = "rgba(255,85,85,1)";
|
||||
notification-error-fg = "rgba(248,248,242,1)";
|
||||
notification-warning-bg = "rgba(255,184,108,1)";
|
||||
notification-warning-fg = "rgba(68,71,90,1)";
|
||||
notification-bg = "rgba(40,42,54,1)";
|
||||
notification-fg = "rgba(248,248,242,1)";
|
||||
|
||||
completion-bg = "rgba(40,42,54,1)";
|
||||
completion-fg = "rgba(98,114,164,1)";
|
||||
completion-group-bg = "rgba(40,42,54,1)";
|
||||
completion-group-fg = "rgba(98,114,164,1)";
|
||||
completion-highlight-bg = "rgba(68,71,90,1)";
|
||||
completion-highlight-fg = "rgba(248,248,242,1)";
|
||||
|
||||
index-bg = "rgba(40,42,54,1)";
|
||||
index-fg = "rgba(248,248,242,1)";
|
||||
index-active-bg = "rgba(68,71,90,1)";
|
||||
index-active-fg = "rgba(248,248,242,1)";
|
||||
|
||||
inputbar-bg = "rgba(40,42,54,1)";
|
||||
inputbar-fg = "rgba(248,248,242,1)";
|
||||
statusbar-bg = "rgba(40,42,54,1)";
|
||||
statusbar-fg = "rgba(248,248,242,1)";
|
||||
|
||||
highlight-color = "rgba(255,184,108,0.5)";
|
||||
highlight-active-color = "rgba(255,121,198,0.5)";
|
||||
|
||||
default-bg = "rgba(40,42,54,1)";
|
||||
default-fg = "rgba(248,248,242,1)";
|
||||
|
||||
render-loading = true;
|
||||
render-loading-fg = "rgba(40,42,54,1)";
|
||||
render-loading-bg = "gba(248,248,242,1)";
|
||||
|
||||
recolor-lightcolor = "rgba(40,42,54,1)";
|
||||
recolor-darkcolor = "rgba(248,248,242,1)";
|
||||
|
||||
adjust-open = "width";
|
||||
recolor = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -119,9 +119,9 @@ in
|
|||
"size 90% 90%,class:^(imv)$"
|
||||
"center,class:^(imv)$"
|
||||
|
||||
"float,class:^(evince)$"
|
||||
"size 90% 90%,class:^(evince)$"
|
||||
"center,class:^(evince)$"
|
||||
"float,class:^(org.pwmt.zathura)$"
|
||||
"size 90% 90%,class:^(org.pwmt.zathura)$"
|
||||
"center,class:^(org.pwmt.zathura)$"
|
||||
|
||||
"float,class:^(yazi)$"
|
||||
"center,class:^(yazi)$"
|
||||
|
|
Loading…
Reference in a new issue