aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-12 04:49:57 -0700
committerFuwn <[email protected]>2024-09-12 04:49:57 -0700
commitf40d0647a98bf9819a6545cdebca194357772402 (patch)
treecc3139ee665031cf14e6d4ed0075d41c1bf98d2b /README.md
parent70cffdc698485f3bce893c1cefe75d4e793b025f (diff)
downloadpywal.nix-f40d0647a98bf9819a6545cdebca194357772402.tar.xz
pywal.nix-f40d0647a98bf9819a6545cdebca194357772402.zip
refactor: "brighter" accessor
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index c191d76..afb2236 100644
--- a/README.md
+++ b/README.md
@@ -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}'
'')
];
}