aboutsummaryrefslogtreecommitdiff
path: root/modules/desktop/hjem/programs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/desktop/hjem/programs')
-rw-r--r--modules/desktop/hjem/programs/foot.nix59
-rw-r--r--modules/desktop/hjem/programs/research.nix47
2 files changed, 73 insertions, 33 deletions
diff --git a/modules/desktop/hjem/programs/foot.nix b/modules/desktop/hjem/programs/foot.nix
index 4d630c6..c05e22c 100644
--- a/modules/desktop/hjem/programs/foot.nix
+++ b/modules/desktop/hjem/programs/foot.nix
@@ -12,40 +12,33 @@
shell = "${pkgs.fish}/bin/fish";
};
- colors = {
- foreground = "cdd6f4";
- background = "1e1e2e";
- cursor = "11111b f5e0dc";
+ colors = with config.collinux.palette; {
+ alpha = "0.6";
- regular0 = "45475a";
- regular1 = "f38ba8";
- regular2 = "a6e3a1";
- regular3 = "f9e2af";
- regular4 = "89b4fa";
- regular5 = "f5c2e7";
- regular6 = "94e2d5";
- regular7 = "bac2de";
-
- bright0 = "585b70";
- bright1 = "f38ba8";
- bright2 = "a6e3a1";
- bright3 = "f9e2af";
- bright4 = "89b4fa";
- bright5 = "f5c2e7";
- bright6 = "94e2d5";
- bright7 = "a6adc8";
-
- "16" = "fab387";
- "17" = "f5e0dc";
-
- selection-foreground = "cdd6f4";
- selection-background = "414356";
-
- search-box-no-match = "11111b f38ba8";
- search-box-match = "cdd6f4 313244";
-
- jump-labels = "11111b fab387";
- urls = "89b4fa";
+ foreground = base05;
+ background = base00;
+ regular0 = base01;
+ regular1 = base08;
+ regular2 = base11;
+ regular3 = base10;
+ regular4 = base13;
+ regular5 = base14;
+ regular6 = base12;
+ regular7 = base06;
+ bright0 = base02;
+ bright1 = base08;
+ bright2 = base11;
+ bright3 = base10;
+ bright4 = base13;
+ bright5 = base14;
+ bright6 = base12;
+ bright7 = base07;
+ "16" = base09;
+ "17" = base15;
+ "18" = base01;
+ "19" = base02;
+ "20" = base04;
+ "21" = base06;
};
};
in
diff --git a/modules/desktop/hjem/programs/research.nix b/modules/desktop/hjem/programs/research.nix
index 3bfde76..1d31479 100644
--- a/modules/desktop/hjem/programs/research.nix
+++ b/modules/desktop/hjem/programs/research.nix
@@ -11,6 +11,7 @@ in
zotero
zathura
xournalpp
+ ocrmypdf
];
files = {
".config/xournalpp/toolbar.ini" = {
@@ -22,5 +23,51 @@ in
};
};
};
+
+ ".config/zathura/zathurarc".text = lib.mkIf (config.collinux.theme == "adwaita") ''
+ set font "Iosevka Nerd Font 11.5"
+
+ set recolor 'true'
+ set recolor-keephue 'false'
+ set recolor-reverse-video 'false'
+
+ # flipped to make dark mode
+ set recolor-lightcolor rgba(0,0,0,0)
+ set recolor-darkcolor '#DEDDDA'
+
+ set completion-fg '#DEDDDA'
+ set completion-bg '#303030'
+ set completion-group-fg '#33B2A4'
+ set completion-group-bg '#303030'
+ set completion-highlight-fg '#303030'
+ set completion-highlight-bg '#DEDDDA'
+
+ set default-fg '#DEDDDA'
+ set default-bg rgba(29,29,29,0.6)
+
+ set inputbar-fg '#DEDDDA'
+ set inputbar-bg '#303030'
+
+ set notification-fg '#DEDDDA'
+ set notification-bg '#303030'
+ set notification-error-fg '#DEDDDA'
+ set notification-error-bg '#E01B24'
+ set notification-warning-fg '#DEDDDA'
+ set notification-warning-bg '#E01B24'
+
+ set statusbar-fg '#DEDDDA'
+ set statusbar-bg '#303030'
+
+ set highlight-color '#33B2A4'
+ set highlight-active-color '#33B2A4'
+
+ set render-loading-fg '#DEDDDA'
+ set render-loading-bg '#303030'
+
+ set index-fg '#DEDDDA'
+ set index-bg '#303030'
+ set index-active-fg '#303030'
+ set index-active-bg '#DEDDDA'
+ '';
};
}