Implemented custom system for creating and distributing color schemes based on wallpapers, and also cycling through wallpapers.

nixfmt'd the codebase
This commit is contained in:
2026-03-09 22:02:46 -04:00
parent 4308b8eb16
commit 8ee748a997
145 changed files with 2776 additions and 1125 deletions

View File

@@ -1,22 +1,23 @@
{ pkgs ? import <nixpkgs> {} }:
{
pkgs ? import <nixpkgs> { },
}:
pkgs.rustPlatform.buildRustPackage rec {
pname = "slash";
version = "v0.5.0_662cb43";
pname = "slash";
version = "v0.5.0_662cb43";
src = pkgs.fetchFromGitHub {
src = pkgs.fetchFromGitHub {
owner = "pagedMov";
repo = "slash";
rev = "662cb43e499d179579d99bf358073516605230ea";
hash = "sha256-4DKAhRkd1XeDNyYH8yL1TnbTc6hZnp2+UV7UYeDRkpE=";
};
doCheck = false; # TODO: Find a way to make tests work
doCheck = false; # TODO: Find a way to make tests work
cargoLock.lockFile = ./Cargo.lock;
cargoLock.lockFile = ./Cargo.lock;
passthru = {
shellPath = "/bin/slash";
};
}
passthru = {
shellPath = "/bin/slash";
};
}