20 lines
549 B
Nix
Raw Normal View History

2020-02-17 16:00:59 +03: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 18:58:51 +03:00
RecolorBackground = thmDec.base00;
RecolorForeground = thmDec.base05;
2020-02-17 16:00:59 +03:00
};
"Document" = {
ChangeColors = true;
2021-06-10 18:58:51 +03:00
PaperColor = thmDec.base00;
2020-02-17 16:00:59 +03:00
RenderMode = "Recolor";
};
"Main View" = { ShowLeftPanel = false; };
PageView = {
2021-06-10 18:58:51 +03:00
BackgroundColor = thmDec.base00;
2020-02-17 16:00:59 +03:00
UseCustomBackgroundColor = true;
};
};
}