diff options
| author | Fuwn <[email protected]> | 2024-09-12 04:49:57 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-12 04:49:57 -0700 |
| commit | f40d0647a98bf9819a6545cdebca194357772402 (patch) | |
| tree | cc3139ee665031cf14e6d4ed0075d41c1bf98d2b /README.md | |
| parent | 70cffdc698485f3bce893c1cefe75d4e793b025f (diff) | |
| download | pywal.nix-f40d0647a98bf9819a6545cdebca194357772402.tar.xz pywal.nix-f40d0647a98bf9819a6545cdebca194357772402.zip | |
refactor: "brighter" accessor
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -3,7 +3,7 @@ > Extremely straightforward evaluation-time Pywal integration for Home Manager `pywal-nix` is focused on providing the simplest way of integrating custom -Pywal colourschemes into any Home Manager configuration at evaluation-time. +Pywal colour schemes into any Home Manager configuration at evaluation-time. I needed a pure (not `--impure`) Nix solution. I made a pure Nix solution. It works well. @@ -55,10 +55,10 @@ the `pywal-nix` attribute. backend = "wal"; # One of "wal", "colorz", or "colorthief"; Defaults to "wal" }; - # Example usage to print out two colourscheme colours + # Example usage to print out two colour scheme colours home.packages = [ - (pkgs.writeShellScriptBin "colourscheme-sample" '' - echo '${config.pywal-nix.colourscheme.colour0} ${config.pywal-nix.colourscheme.colour15}' + (pkgs.writeShellScriptBin "colour-scheme-sample" '' + echo '${config.pywal-nix.colourScheme.colour0} ${config.pywal-nix.colourScheme.colour15}' '') ]; } |