nixos-config/modules/applications/okular.nix

20 lines
549 B
Nix
Raw Normal View History

2020-02-17 17:00:59 +04:00
{ pkgs, lib, config, ... }:
with import ../../support.nix { inherit lib config; }; {
home-manager.users.balsoft.xdg.configFile."okularpartrc".text = genIni {
"Dlg Accessibility" = {
2021-06-10 19:58:51 +04:00
RecolorBackground = thmDec.base00;
RecolorForeground = thmDec.base05;
2020-02-17 17:00:59 +04:00
};
"Document" = {
ChangeColors = true;
2021-06-10 19:58:51 +04:00
PaperColor = thmDec.base00;
2020-02-17 17:00:59 +04:00
RenderMode = "Recolor";
};
"Main View" = { ShowLeftPanel = false; };
PageView = {
2021-06-10 19:58:51 +04:00
BackgroundColor = thmDec.base00;
2020-02-17 17:00:59 +04:00
UseCustomBackgroundColor = true;
};
};
}