2020-02-17 17:00:59 +04:00
|
|
|
{ pkgs, lib, config, ... }:
|
2023-01-27 22:48:27 +04:00
|
|
|
with (pkgs.my-lib.thmDec config.themes.colors); {
|
|
|
|
home-manager.users.balsoft = {
|
|
|
|
home.packages = [ pkgs.okular ];
|
|
|
|
xdg.configFile."okularpartrc".text = pkgs.my-lib.genIni {
|
|
|
|
"Dlg Accessibility" = {
|
|
|
|
RecolorBackground = base00;
|
|
|
|
RecolorForeground = base05;
|
|
|
|
};
|
|
|
|
"Document" = {
|
|
|
|
ChangeColors = true;
|
|
|
|
PaperColor = base00;
|
|
|
|
RenderMode = "Recolor";
|
|
|
|
};
|
|
|
|
"Main View" = { ShowLeftPanel = false; };
|
|
|
|
PageView = {
|
|
|
|
BackgroundColor = base00;
|
|
|
|
UseCustomBackgroundColor = true;
|
|
|
|
};
|
2020-02-17 17:00:59 +04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|