nixos-config/modules/applications/okular.nix

20 lines
533 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" = {
RecolorBackground = thmDec.bg;
RecolorForeground = thmDec.fg;
};
"Document" = {
ChangeColors = true;
PaperColor = thmDec.bg;
RenderMode = "Recolor";
};
"Main View" = { ShowLeftPanel = false; };
PageView = {
BackgroundColor = thmDec.bg;
UseCustomBackgroundColor = true;
};
};
}