Improvements to scrolling + other optimizations

This commit is contained in:
Emmet 2023-08-26 15:58:45 -05:00
parent dc0a87f941
commit e1005f80a4
6 changed files with 81 additions and 42 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, eaf, eaf-browser, org-nursery, theme, ... }:
{ config, lib, pkgs, eaf, eaf-browser, org-nursery, phscroll, theme, ... }:
let
themePolarity = lib.removeSuffix "\n" (builtins.readFile (./. + "../../../../themes"+("/"+theme)+"/polarity.txt"));
dashboardLogo = ./. + "/nix-" + themePolarity + ".png";
@ -87,4 +87,7 @@ in
source = ./scripts/copy-link-or-file/copy-link-or-file-to-clipboard.sh;
executable = true;
};
home.file.".emacs.d/phscroll" = {
source = "${phscroll}";
};
}