diff --git a/home/features/desktop/awesome/default.nix b/home/features/desktop/awesome/default.nix index 08785e3..16282f6 100644 --- a/home/features/desktop/awesome/default.nix +++ b/home/features/desktop/awesome/default.nix @@ -1,6 +1,7 @@ {pkgs, ...}: { imports = [ ../common + ./zathura.nix ]; home = { diff --git a/home/features/desktop/awesome/zathura.nix b/home/features/desktop/awesome/zathura.nix new file mode 100644 index 0000000..13e807d --- /dev/null +++ b/home/features/desktop/awesome/zathura.nix @@ -0,0 +1,44 @@ +{pkgs, ...}: { + programs.zathura = { + enable = true; + options = { + default-fg = "#CDD6F4"; + default-bg = "#1E1E2E"; + + completion-bg = "#313244"; + completion-fg = "#CDD6F4"; + completion-highlight-bg = "#575268"; + completion-highlight-fg = "#CDD6F4"; + completion-group-bg = "#313244"; + completion-group-fg = "#89B4FA"; + + statusbar-fg = "#CDD6F4"; + statusbar-bg = "#313244"; + + notification-bg = "#313244"; + notification-fg = "#CDD6F4"; + notification-error-bg = "#313244"; + notification-error-fg = "#F38BA8"; + notification-warning-bg = "#313244"; + notification-warning-fg = "#FAE3B0"; + + inputbar-fg = "#CDD6F4"; + inputbar-bg = "#313244"; + + recolor-lightcolor = "#1E1E2E"; + recolor-darkcolor = "#CDD6F4"; + + index-fg = "#CDD6F4"; + index-bg = "#1E1E2E"; + index-active-fg = "#CDD6F4"; + index-active-bg = "#313244"; + + render-loading-bg = "#1E1E2E"; + render-loading-fg = "#CDD6F4"; + + highlight-color = "#575268"; + highlight-fg = "#F5C2E7"; + highlight-active-color = "#F5C2E7"; + }; + }; +}