hypland theme fixes

This commit is contained in:
mjallen18
2025-07-07 21:22:25 -05:00
parent bc183bc8dd
commit f770342649
6 changed files with 74 additions and 17 deletions

View File

@@ -2,6 +2,23 @@
let
settings = import ./settings.nix { inherit pkgs hyprlandSettings; };
wallpaper = "/run/wallpaper.jpg";
jiggler = pkgs.python3.pkgs.buildPythonPackage rec {
pname = "jiggler";
version = "0.0.3";
format = "pyproject";
src = pkgs.fetchPypi {
inherit pname version;
sha256 = "sha256-6M4CbwxajYaQ5s73y+arKewLgu/pjfCay2giVVGYjhM=";
};
# do not run tests
doCheck = false;
nativeBuildInputs = with pkgs.python3.pkgs; [ setuptools ];
propagatedBuildInputs = with pkgs.python3.pkgs; [
click
pynput
];
};
in
{
imports = [
@@ -216,7 +233,9 @@ in
size = settings.cursorSize;
};
packages = settings.requiredPkgs;
packages = [
jiggler
] ++ settings.requiredPkgs;
};
dconf = {