A color picker using hyprpicker written in rust
A simple color picker wrapper for hyprpicker
Usage: color-picker [OPTIONS]
Options:
-u, --usage Get a small tutorial on how to run
-f, --format The format of the color output, one of hsv, hex, hsl, cmyk and rgb
-h, --help Print help
-V, --version Print version
Just run this and let it work it's magick!
color-picker
If you hope to use different formats e.g hsv, run
color-picker -f hsv
git clone https://github.com/Daru-san/color-picker
cd color-picker
cargo build --release
Run without installing
nix run github:Daru-san/color-picker
Add to flake for home-wide or system-wide installation
# In flake.nix
{
description = "Your flake";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
color-picker = {
url = "github:Daru-san/color-picker";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}
# In home.nix
{pkgs,inputs,...}:{
home.packages = [inputs.color-picker.packages.${pkgs.system}.default];
}